diff options
author | Roland McGrath <roland@gnu.org> | 2002-10-01 19:42:01 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-10-01 19:42:01 +0000 |
commit | c737bdee1731ae0b781482e279083dcc0fa9e7dd (patch) | |
tree | 8aef0caec3ced6ac30ba1d850688df7d4ca90ea0 /sysdeps/unix | |
parent | a877402c0f14eb9614576cc1b3579a5ca4b683ef (diff) | |
download | glibc-c737bdee1731ae0b781482e279083dcc0fa9e7dd.tar glibc-c737bdee1731ae0b781482e279083dcc0fa9e7dd.tar.gz glibc-c737bdee1731ae0b781482e279083dcc0fa9e7dd.tar.bz2 glibc-c737bdee1731ae0b781482e279083dcc0fa9e7dd.zip |
2002-10-01 Carlos O'Donell <carlos@baldric.uwo.ca>
* sysdeps/unix/sysv/linux/hppa/bits/fcntl.h
[__USE_GNU] (F_SETLEASE, F_GETLEASE, F_NOTIFY): New macros.
[__USE_GNU] (DN_ACCESS, DN_MODIFY, DN_CREATE, DN_DELETE, DN_RENAME,
DN_ATTRIB, DN_MULTISHOT): New macros.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/hppa/bits/fcntl.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h b/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h index d8b110c28a..dc68122f8f 100644 --- a/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h @@ -81,6 +81,12 @@ # define F_GETSIG 14 /* Get number of signal to be sent. */ #endif +#ifdef __USE_GNU +# define F_SETLEASE 1024 /* Set a lease. */ +# define F_GETLEASE 1025 /* Enquire what lease is active. */ +# define F_NOTIFY 1026 /* Request notfications on a directory. */ +#endif + /* for F_[GET|SET]FL */ #define FD_CLOEXEC 1 /* actually anything with low bit set goes */ @@ -102,6 +108,17 @@ # define LOCK_UN 8 /* remove lock */ #endif +#ifdef __USE_GNU +/* Types of directory notifications that may be requested with F_NOTIFY. */ +# define DN_ACCESS 0x00000001 /* File accessed. */ +# define DN_MODIFY 0x00000002 /* File modified. */ +# define DN_CREATE 0x00000004 /* File created. */ +# define DN_DELETE 0x00000008 /* File removed. */ +# define DN_RENAME 0x00000010 /* File renamed. */ +# define DN_ATTRIB 0x00000020 /* File changed attibutes. */ +# define DN_MULTISHOT 0x80000000 /* Don't remove notifier. */ +#endif + struct flock { short int l_type; /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK. */ |