Page MenuHomeFreeBSD

atomic: Add atomic_load/store_bool()
ClosedPublic

Authored by markj on Aug 8 2022, 6:11 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Mar 15, 3:21 PM
Unknown Object (File)
Wed, Mar 11, 1:35 AM
Unknown Object (File)
Fri, Feb 27, 9:04 PM
Unknown Object (File)
Fri, Feb 27, 2:01 PM
Unknown Object (File)
Fri, Feb 27, 6:10 AM
Unknown Object (File)
Feb 14 2026, 11:47 AM
Unknown Object (File)
Feb 14 2026, 11:47 AM
Unknown Object (File)
Feb 14 2026, 1:29 AM
Subscribers

Details

Summary

For plain accesses, I can see no reason not to provide them. They will
be useful for jhb's re-import of if_wg.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 46795
Build 43684: arc lint + arc unit

Event Timeline

markj requested review of this revision.Aug 8 2022, 6:11 PM
sys/sys/atomic_common.h
42

Why #ifdef _KERNEL? Using _Bool, you can do it for userspace, I think. Also, this is a macro, so type is dormant unless the macro is actually used.

Drop _KERNEL guards, use _Bool instead.

This revision is now accepted and ready to land.Aug 8 2022, 9:29 PM
This revision was automatically updated to reflect the committed changes.