Bug 60602
Summary: | clock_gettime(): Note on SMP systems outdated ? | ||
---|---|---|---|
Product: | Documentation | Reporter: | Rodrigo Campos (rodrigo) |
Component: | man-pages | Assignee: | documentation_man-pages (documentation_man-pages) |
Status: | RESOLVED CODE_FIX | ||
Severity: | normal | CC: | rodrigo |
Priority: | P1 | ||
Hardware: | All | ||
OS: | Linux | ||
Kernel Version: | Subsystem: | ||
Regression: | No | Bisected commit-id: | |
Attachments: | clock_getres.2: Remove obsolete note on SMP systems |
Description
Rodrigo Campos
2013-07-22 14:07:38 UTC
Created attachment 106998 [details]
clock_getres.2: Remove obsolete note on SMP systems
As confirmed by peterz on IRC, the note is obsolete. The attached patch fixes it by just removing the note. Thanks a lot, Rodrigo Ping ? There is a typo on my explanation on the original bug report. Where it says: (0 << 3) | 0010 | 0100 ==> 1000 | 0010 | 0100 ==> 1110 It should be: ((~0) << 3) | 0010 | 0100 ==> 1000 | 0010 | 0100 ==> 1110 (note that zero is negated). The code does that, I just had a typo when writing the report. Also, Peter Ziljstra has confirmed on IRC that the note is outdated. He told me to tell you :-) If there is anything missing/to be fixed with the patch, please let me know Thanks a lot, Rodrigo Ping ? Thanks a lot, Rodrigo The issue moved to the list: http://article.gmane.org/gmane.linux.man/4374 and was resolved there (see commit 78638aa on the manpages repo) |