mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-18 06:30:05 +00:00
* sysdeps/unix/sysv/linux/bits/socket.h: Define MSG_CMSG_CLOEXEC.
* sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_CLOEXEC. * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
This commit is contained in:
parent
2c89631565
commit
acf79996d4
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
2007-07-21 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/bits/socket.h: Define MSG_CMSG_CLOEXEC.
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_CLOEXEC.
|
||||||
|
* sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
|
||||||
|
|
||||||
2007-07-20 Jakub Jelinek <jakub@redhat.com>
|
2007-07-20 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
[BZ #4816]
|
[BZ #4816]
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* O_*, F_*, FD_* bit values for Linux.
|
/* O_*, F_*, FD_* bit values for Linux.
|
||||||
Copyright (C) 1995, 1996, 1997, 1998, 2000, 2004, 2006
|
Copyright (C) 1995, 1996, 1997, 1998, 2000, 2004, 2006, 2007
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
@ -50,6 +50,7 @@
|
|||||||
# define O_DIRECTORY 0200000 /* Must be a directory. */
|
# define O_DIRECTORY 0200000 /* Must be a directory. */
|
||||||
# define O_NOFOLLOW 0400000 /* Do not follow links. */
|
# define O_NOFOLLOW 0400000 /* Do not follow links. */
|
||||||
# define O_NOATIME 01000000 /* Do not set atime. */
|
# define O_NOATIME 01000000 /* Do not set atime. */
|
||||||
|
# define O_CLOEXEC 02000000 /* Set close_on_exec. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* For now Linux has synchronisity options for data and read operations.
|
/* For now Linux has synchronisity options for data and read operations.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* O_*, F_*, FD_* bit values for Linux/IA64.
|
/* O_*, F_*, FD_* bit values for Linux/IA64.
|
||||||
Copyright (C) 1999, 2000, 2004, 2006 Free Software Foundation, Inc.
|
Copyright (C) 1999, 2000, 2004, 2006, 2007 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -49,6 +49,7 @@
|
|||||||
# define O_DIRECTORY 0200000 /* must be a directory */
|
# define O_DIRECTORY 0200000 /* must be a directory */
|
||||||
# define O_NOFOLLOW 0400000 /* don't follow links */
|
# define O_NOFOLLOW 0400000 /* don't follow links */
|
||||||
# define O_NOATIME 01000000 /* Do not set atime. */
|
# define O_NOATIME 01000000 /* Do not set atime. */
|
||||||
|
# define O_CLOEXEC 02000000 /* Set close_on_exec. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __USE_LARGEFILE64
|
#ifdef __USE_LARGEFILE64
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* O_*, F_*, FD_* bit values for Linux/PowerPC.
|
/* O_*, F_*, FD_* bit values for Linux/PowerPC.
|
||||||
Copyright (C) 1995, 1996, 1997, 1998, 2000, 2003, 2004, 2006
|
Copyright (C) 1995, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2007
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
@ -50,6 +50,7 @@
|
|||||||
# define O_DIRECTORY 040000 /* Must be a directory. */
|
# define O_DIRECTORY 040000 /* Must be a directory. */
|
||||||
# define O_NOFOLLOW 0100000 /* Do not follow links. */
|
# define O_NOFOLLOW 0100000 /* Do not follow links. */
|
||||||
# define O_NOATIME 01000000 /* Do not set atime. */
|
# define O_NOATIME 01000000 /* Do not set atime. */
|
||||||
|
# define O_CLOEXEC 02000000 /* Set close_on_exec. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __USE_LARGEFILE64
|
#ifdef __USE_LARGEFILE64
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* O_*, F_*, FD_* bit values for Linux.
|
/* O_*, F_*, FD_* bit values for Linux.
|
||||||
Copyright (C) 2000, 2001, 2002, 2004, 2006 Free Software Foundation, Inc.
|
Copyright (C) 2000,2001,2002,2004,2006,2007 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -50,6 +50,7 @@
|
|||||||
# define O_DIRECTORY 0200000 /* Must be a directory. */
|
# define O_DIRECTORY 0200000 /* Must be a directory. */
|
||||||
# define O_NOFOLLOW 0400000 /* Do not follow links. */
|
# define O_NOFOLLOW 0400000 /* Do not follow links. */
|
||||||
# define O_NOATIME 01000000 /* Do not set atime. */
|
# define O_NOATIME 01000000 /* Do not set atime. */
|
||||||
|
# define O_CLOEXEC 02000000 /* Set close_on_exec. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __USE_LARGEFILE64
|
#ifdef __USE_LARGEFILE64
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* O_*, F_*, FD_* bit values for Linux.
|
/* O_*, F_*, FD_* bit values for Linux.
|
||||||
Copyright (C) 1995, 1996, 1997, 1998, 2000, 2004, 2006
|
Copyright (C) 1995, 1996, 1997, 1998, 2000, 2004, 2006, 2007
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
@ -50,6 +50,7 @@
|
|||||||
# define O_DIRECTORY 0200000 /* Must be a directory. */
|
# define O_DIRECTORY 0200000 /* Must be a directory. */
|
||||||
# define O_NOFOLLOW 0400000 /* Do not follow links. */
|
# define O_NOFOLLOW 0400000 /* Do not follow links. */
|
||||||
# define O_NOATIME 01000000 /* Do not set atime. */
|
# define O_NOATIME 01000000 /* Do not set atime. */
|
||||||
|
# define O_CLOEXEC 02000000 /* Set close_on_exec. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* For now Linux has synchronisity options for data and read operations.
|
/* For now Linux has synchronisity options for data and read operations.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* O_*, F_*, FD_* bit values for Linux/x86-64.
|
/* O_*, F_*, FD_* bit values for Linux/x86-64.
|
||||||
Copyright (C) 2001, 2002, 2004, 2006 Free Software Foundation, Inc.
|
Copyright (C) 2001, 2002, 2004, 2006, 2007 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -50,6 +50,7 @@
|
|||||||
# define O_DIRECTORY 0200000 /* Must be a directory. */
|
# define O_DIRECTORY 0200000 /* Must be a directory. */
|
||||||
# define O_NOFOLLOW 0400000 /* Do not follow links. */
|
# define O_NOFOLLOW 0400000 /* Do not follow links. */
|
||||||
# define O_NOATIME 01000000 /* Do not set atime. */
|
# define O_NOATIME 01000000 /* Do not set atime. */
|
||||||
|
# define O_CLOEXEC 02000000 /* Set close_on_exec. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* For now Linux has synchronisity options for data and read operations.
|
/* For now Linux has synchronisity options for data and read operations.
|
||||||
|
Loading…
Reference in New Issue
Block a user