Page MenuHomeFreeBSD

umtx: Split umtx.h on two counterparts.
ClosedPublic

Authored by dchagin on Jul 20 2021, 7:21 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Apr 9, 1:49 PM
Unknown Object (File)
Wed, Apr 9, 6:03 AM
Unknown Object (File)
Sat, Apr 5, 5:31 AM
Unknown Object (File)
Feb 27 2025, 5:25 PM
Unknown Object (File)
Feb 27 2025, 1:54 PM
Unknown Object (File)
Feb 23 2025, 2:39 PM
Unknown Object (File)
Feb 20 2025, 11:12 AM
Unknown Object (File)
Feb 14 2025, 11:54 AM
Subscribers

Details

Summary

To prevent umtx.h polluting by future changes split it on two headers:
umtx.h - ABI header for userspace;
umtxvar.h - the kernel staff.

Diff Detail

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

Event Timeline

sys/sys/umtxvar.h
35

Please do not do this. We prefer to not nest includes. Consumer should include sys/umtx.h, then sys/umtxvar.h.

89

While there, fix style. Indent should be +4 spaces for continuation lines.

blank line after { added in the umtx_key_match

This revision is now accepted and ready to land.Jul 20 2021, 10:43 PM
This revision was automatically updated to reflect the committed changes.