Details
Details
Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
sys/kern/kern_umtx.c | ||
---|---|---|
767–768 | I would rename the rest of the abs_timeout_ functions in this go as well, but this is your call. |
Comment Actions
done.
Add umtx_ prefix to all abs_timeout facility, add declaration for it.
For consistency with others abs_timeout functions mark inline abs_timeout_init2.
sys/kern/kern_umtx.c | ||
---|---|---|
263–266 | I am not sure, but 'inline' is probably more important in declaration. |
Comment Actions
yes, I think you are right, moreover, inline should be droped from function as
the compiler can ignore the inline qualifier and generate calls to the function if
the code is compiled without optimization for example