-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2005-01-06 Ulrich Drepper <drepper@redhat.com> * misc/sys/cdefs.h: Define __wur. * libio/stdio.h: Use __wur for a number of interfaces. * posix/unistd.h: Likewise. * posix/regex_internal.c (free_state): Free word_trtable.
- Loading branch information
Ulrich Drepper
committed
Jan 6, 2005
1 parent
bb803bf
commit 5cf53cc
Showing
4 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<unistd.h>: | ||
|
||
lssek: Probably should be __wur but lseek(fd,SEEK_SET,0) will succeed if | ||
the descriptor is fine. | ||
lseek64: same | ||
|
||
setuid: will always succeed given correct privileges, so there might | ||
be places which don't check for it. | ||
setreuid: same | ||
seteuid: same | ||
setgid: same | ||
setregid: same | ||
setegid: same | ||
setresuid: same | ||
setresgid: same | ||
|
||
|
||
<stdio.h>: | ||
|
||
setvbuf: if stream and buffer are fine and other parameters constant, | ||
it cannot really fail. | ||
fseek: see lseek | ||
fseeko: likewise | ||
fgetpos: similarly | ||
fsetpos: likewise |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters