Bug 63148

Summary: Nice return value is changed in glibc 2.2.5
Product: [Retired] Red Hat Linux Reporter: hjl
Component: man-pagesAssignee: Trond Eivind Glomsrxd <teg>
Status: CLOSED NOTABUG QA Contact: Ben Levenson <benl>
Severity: high Docs Contact:
Priority: high    
Version: 7.3CC: jakub
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2002-04-10 22:28:11 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:
Bug Depends On:    
Bug Blocks: 61901    

Description hjl 2002-04-10 16:41:07 UTC
See the bug 63147.

Comment 1 Trond Eivind Glomsrxd 2002-04-10 20:40:17 UTC
Jakub,should the man page be changed, and in what what?

Comment 2 Bill Nottingham 2002-04-10 22:06:46 UTC
nice(2) shouldn't be changed, aside from possibly mentioning that glibc-2.2.5
and later returns the new priority... the syscall is the same, AFAIK.

There should probably be a nice(3) that documents that the library interface
conforms to SuS. Or do we not do separate section 3 pages for places where glibc
changes the returns of syscalls?

In any case, especially if the symbol isn't versioned, we need to add this to
the release notes.

Comment 3 hjl 2002-04-10 22:28:07 UTC
I don't think the (2) man pages describe the raw system calls. That is you can't
apply
the xxx(2) mage page to syscall (SYS_xxxx, ....).  For example,

STAT(2)                    System calls                   STAT(2)

NAME
       stat, fstat, lstat - get file status

SYNOPSIS
       #include <sys/types.h>
       #include <sys/stat.h>
       #include <unistd.h>

       int stat(const char *file_name, struct stat *buf);
       int fstat(int filedes, struct stat *buf);
       int lstat(const char *file_name, struct stat *buf);

DESCRIPTION
       These  functions  return  information  about the specified
       file.  You do not need any access rights to  the  file  to
       get  this  information  but  you need search rights to all
       directories named in the path leading to the file.

       stat stats the file pointed to by file_name and  fills  in
       buf.

You can't replace 

stat ("foo", &buf)

with

syscall (SYS_stat, "foo", &buf)

The xxx (2) man pages are for the cooked syscalls provided by glibc. You can
have a separate man page for syscall (). But I don't think adding nice (3) will
help anyone if there is nice (2).


Comment 4 Trond Eivind Glomsrxd 2002-04-16 02:25:32 UTC
The man page should document the standard. A deviation from that is a bug in the
component implementing it, not in the man page. If there is one, please add a
patch :)