mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
Fix dirent/tst-fdopendir not to presume O_NOATIME exists.
This commit is contained in:
parent
ebf7d6eedb
commit
56606ab3b8
@ -1,5 +1,7 @@
|
||||
2015-02-06 Roland McGrath <roland@hack.frob.com>
|
||||
|
||||
* dirent/tst-fdopendir.c (O_NOATIME): If not defined, #define to 0.
|
||||
|
||||
* nptl/tst-kill5.c (do_test): Use INT_MAX rather than SIGRTMAX + 10.
|
||||
|
||||
* nptl/tst-join5.c: Drop #include <sys/syscall.h>.
|
||||
|
@ -6,6 +6,9 @@
|
||||
#include <stdbool.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifndef O_NOATIME
|
||||
# define O_NOATIME 0
|
||||
#endif
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
|
Loading…
Reference in New Issue
Block a user