diff options
author | Andreas Jaeger <aj@suse.de> | 2000-09-27 15:03:51 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-09-27 15:03:51 +0000 |
commit | 4ccacaa1ab70fea060ba6c1509e8b14e61c11d8c (patch) | |
tree | ed2187730e6efe3cfb783e95722ee6fe2d88862e /sysdeps/unix/sysv/linux | |
parent | d6b835da69461e44bf104648e7a990d618dc7c6d (diff) | |
download | glibc-4ccacaa1ab70fea060ba6c1509e8b14e61c11d8c.tar glibc-4ccacaa1ab70fea060ba6c1509e8b14e61c11d8c.tar.gz glibc-4ccacaa1ab70fea060ba6c1509e8b14e61c11d8c.tar.bz2 glibc-4ccacaa1ab70fea060ba6c1509e8b14e61c11d8c.zip |
Update.
* sysdeps/gnu/netinet/tcp.h: Add tcp_info defines and types.
* sysdeps/unix/sysv/linux/sys/mount.h (enum): New flag MS_BIND.
* sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (F_SETLKW64,
F_GETLK64, F_SETLK64): Update from Linux-2.4.0-test9-pre4.
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h | 7 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/sys/mount.h | 6 |
2 files changed, 7 insertions, 6 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h b/sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h index 194d61d14d..26f6074b3d 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h @@ -78,10 +78,9 @@ # define F_SETLKW F_SETLKW64 /* Set record locking info (blocking). */ #endif -/* XXX missing */ -#define F_GETLK64 5 /* Get record locking info. */ -#define F_SETLK64 6 /* Set record locking info (non-blocking). */ -#define F_SETLKW64 7 /* Set record locking info (blocking). */ +#define F_GETLK64 12 /* Get record locking info. */ +#define F_SETLK64 13 /* Set record locking info (non-blocking). */ +#define F_SETLKW64 14 /* Set record locking info (blocking). */ #if defined __USE_BSD || defined __USE_XOPEN2K # define F_SETOWN 8 /* Get owner of socket (receiver of SIGIO). */ diff --git a/sysdeps/unix/sysv/linux/sys/mount.h b/sysdeps/unix/sysv/linux/sys/mount.h index ae0ed2b5d2..f43173f5a5 100644 --- a/sysdeps/unix/sysv/linux/sys/mount.h +++ b/sysdeps/unix/sysv/linux/sys/mount.h @@ -1,5 +1,5 @@ /* Header file for mounting/unmount Linux filesystems. - Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -55,8 +55,10 @@ enum #define S_IMMUTABLE S_IMMUTABLE MS_NOATIME = 1024, /* Do not update access times. */ #define MS_NOATIME MS_NOATIME - MS_NODIRATIME = 2048 /* Do not update directory access times. */ + MS_NODIRATIME = 2048, /* Do not update directory access times. */ #define MS_NODIRATIME MS_NODIRATIME + MS_BIND = 4096, /* Bind directory at different place. */ +#define MS_BIND MS_BIND }; /* Flags that can be altered by MS_REMOUNT */ |