diff options
author | gallatin <gallatin@FreeBSD.org> | 2000-11-16 00:58:07 +0000 |
---|---|---|
committer | gallatin <gallatin@FreeBSD.org> | 2000-11-16 00:58:07 +0000 |
commit | f930ff839030a5450d4b2c0a33c3c44aff60d7e5 (patch) | |
tree | 78fd285e8b240b9f6376115aaf84125b7afbde86 /sys/alpha | |
parent | 60bcdb47f785b7287c484c9af43fd665ed07c2ef (diff) | |
download | FreeBSD-src-f930ff839030a5450d4b2c0a33c3c44aff60d7e5.zip FreeBSD-src-f930ff839030a5450d4b2c0a33c3c44aff60d7e5.tar.gz |
make the fcntl() flags match what the linux/alpha port uses, not
what linux/i386 uses
Diffstat (limited to 'sys/alpha')
-rw-r--r-- | sys/alpha/linux/linux.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/sys/alpha/linux/linux.h b/sys/alpha/linux/linux.h index 507289b..4000866 100644 --- a/sys/alpha/linux/linux.h +++ b/sys/alpha/linux/linux.h @@ -269,15 +269,17 @@ int linux_ioctl_unregister_handlers(struct linker_set *s); #define LINUX_F_SETFD 2 #define LINUX_F_GETFL 3 #define LINUX_F_SETFL 4 -#define LINUX_F_GETLK 5 -#define LINUX_F_SETLK 6 -#define LINUX_F_SETLKW 7 -#define LINUX_F_SETOWN 8 -#define LINUX_F_GETOWN 9 - -#define LINUX_F_RDLCK 0 -#define LINUX_F_WRLCK 1 -#define LINUX_F_UNLCK 2 +#define LINUX_F_SETOWN 5 +#define LINUX_F_GETOWN 6 +#define LINUX_F_GETLK 7 +#define LINUX_F_SETLK 8 +#define LINUX_F_SETLKW 9 +#define LINUX_F_SETSIG 10 +#define LINUX_F_GETSIG 11 + +#define LINUX_F_RDLCK 1 +#define LINUX_F_WRLCK 2 +#define LINUX_F_UNLCK 8 /* * SystemV IPC defines |