diff options
author | Andreas Jaeger <aj@suse.de> | 2000-08-12 10:01:20 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-08-12 10:01:20 +0000 |
commit | facd11c28e11834052d048c603dac4c99ab2aeaa (patch) | |
tree | 8021819fd1f004ea500b0000989ecba7ab485827 /sysdeps/unix/sysv/linux/alpha/bits | |
parent | e762517de285049715f8a5ff53a760bd7e33fe15 (diff) | |
download | glibc-facd11c28e11834052d048c603dac4c99ab2aeaa.tar.gz glibc-facd11c28e11834052d048c603dac4c99ab2aeaa.tar.xz glibc-facd11c28e11834052d048c603dac4c99ab2aeaa.zip |
Update.
* sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (F_GETLK64, F_SETLK64, F_SETLKW64): Define with F_GETLK etc.
Diffstat (limited to 'sysdeps/unix/sysv/linux/alpha/bits')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/bits/fcntl.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h index 7184d08a4a..2b879dcd8f 100644 --- a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h @@ -71,11 +71,9 @@ #define F_GETLK 7 /* Get record locking info. */ #define F_SETLK 8 /* Set record locking info (non-blocking). */ #define F_SETLKW 9 /* Set record locking info (blocking). */ - -/* XXX missing */ -#define F_GETLK64 7 /* Get record locking info. */ -#define F_SETLK64 8 /* Set record locking info (non-blocking). */ -#define F_SETLKW64 9 /* Set record locking info (blocking). */ +#define F_GETLK64 F_GETLK /* Get record locking info. */ +#define F_SETLK64 F_SETLK /* Set record locking info (non-blocking). */ +#define F_SETLKW64 F_SETLKW /* Set record locking info (blocking). */ #if defined __USE_BSD || defined __USE_XOPEN2K # define F_SETOWN 5 /* Get owner of socket (receiver of SIGIO). */ |