about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/x86
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2012-10-24 08:54:46 +0200
committerAndreas Jaeger <aj@suse.de>2012-10-24 08:54:46 +0200
commit9fddec1a48b8ddf69c7599be9b3a47bf9e5c066c (patch)
tree81161b3458d45d9ae51b28f24253b96d94f13370 /sysdeps/unix/sysv/linux/x86
parent03ac099f6bc9157cdec50db10944e1d99ff07aa1 (diff)
downloadglibc-9fddec1a48b8ddf69c7599be9b3a47bf9e5c066c.tar.gz
glibc-9fddec1a48b8ddf69c7599be9b3a47bf9e5c066c.tar.xz
glibc-9fddec1a48b8ddf69c7599be9b3a47bf9e5c066c.zip
F_GETLK cleanup for <bits/fcntl.h>
Diffstat (limited to 'sysdeps/unix/sysv/linux/x86')
-rw-r--r--sysdeps/unix/sysv/linux/x86/bits/fcntl.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/sysdeps/unix/sysv/linux/x86/bits/fcntl.h b/sysdeps/unix/sysv/linux/x86/bits/fcntl.h
index dcf4fc01af..9251e750ed 100644
--- a/sysdeps/unix/sysv/linux/x86/bits/fcntl.h
+++ b/sysdeps/unix/sysv/linux/x86/bits/fcntl.h
@@ -27,26 +27,10 @@
 #endif
 
 #ifdef __x86_64__
-# define F_GETLK	5	/* Get record locking info.  */
-# define F_SETLK	6	/* Set record locking info (non-blocking).  */
-# define F_SETLKW	7	/* Set record locking info (blocking).	*/
 /* Not necessary, we always have 64-bit offsets.  */
 # 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).	*/
-#else
-# ifndef __USE_FILE_OFFSET64
-#  define F_GETLK	5	/* Get record locking info.  */
-#  define F_SETLK	6	/* Set record locking info (non-blocking).  */
-#  define F_SETLKW	7	/* Set record locking info (blocking).	*/
-# else
-#  define F_GETLK	F_GETLK64  /* Get record locking info.	*/
-#  define F_SETLK	F_SETLK64  /* Set record locking info (non-blocking).*/
-#  define F_SETLKW	F_SETLKW64 /* Set record locking info (blocking).  */
-# endif
-# 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).	*/
 #endif