Bug 195668
| Summary: | No more syscallN, update documentation | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Nurdin Premji <npremji> |
| Component: | man-pages | Assignee: | David Woodhouse <dwmw2> |
| Status: | CLOSED RAWHIDE | QA Contact: | Brian Brock <bbrock> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | rawhide | CC: | jakub, kasal, mtk.manpages |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2007-07-24 09:03:15 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Nurdin Premji
2006-06-16 14:08:29 UTC
This has nothing to do with glibc, the change was done in glibc-kernheaders and documentation is in man-pages. The syscallX macros in the kernel's private headers were never suitable for userspace. For a while, we used to _add_ something in linux/unistd.h which just used glibc's syscall(2). But that was a bad plan -- userspace should not be using kernel headers, and adding stuff to kernel-private headers _solely_ for userspace isn't something we're likely to get away with upstream. Either we could add syscallX macros to glibc's headers, or we should fix the man-pages to document the use of syscall(2) instead. Or both. As noted in bug #235206, man-pages-2.55 fixes this. (There is one possible omission, intro.2, though.) As noted in comment #8 for bug #235206, version 2.61 fixed the problems in intro(2), and even updated the obsolete setup(2). To conclude, current build contains a complete fix. |