mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-30 12:31:53 +08:00
Update.
* sysdeps/unix/sysv/linux/arm/bits/fcntl.h: Protect DN_* by __USE_GNU. * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/m68k/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise. 2000-09-29 Andreas Jaeger <aj@suse.de>
This commit is contained in:
parent
49cd298d5d
commit
1df99b5f25
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
||||
2000-09-29 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* sysdeps/unix/sysv/linux/arm/bits/fcntl.h: Protect DN_* by
|
||||
__USE_GNU.
|
||||
* sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/bits/fcntl.h: Likewise.
|
||||
* sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Likewise.
|
||||
* sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
|
||||
|
||||
2000-09-29 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* sysdeps/unix/sysv/linux/arm/bits/fcntl.h: Synch with Linux
|
||||
|
@ -123,14 +123,16 @@
|
||||
# define LOCK_RW 192 /* ... Which allows concurrent read & write operations. */
|
||||
#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. */
|
||||
# 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
|
||||
{
|
||||
|
@ -122,14 +122,16 @@
|
||||
# define LOCK_RW 192 /* ... Which allows concurrent read & write operations. */
|
||||
#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. */
|
||||
# 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
|
||||
{
|
||||
|
@ -120,14 +120,16 @@
|
||||
#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. */
|
||||
# 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
|
||||
|
||||
/* We don't need to support __USE_FILE_OFFSET64. */
|
||||
struct flock
|
||||
|
@ -122,14 +122,16 @@
|
||||
# define LOCK_RW 192 /* ... Which allows concurrent read & write operations. */
|
||||
#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. */
|
||||
# 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
|
||||
{
|
||||
|
@ -124,14 +124,16 @@
|
||||
# define LOCK_RW 192 /* ... Which allows concurrent read & write operations. */
|
||||
#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. */
|
||||
# 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
|
||||
|
||||
typedef struct flock
|
||||
{
|
||||
|
@ -126,14 +126,16 @@
|
||||
# define LOCK_RW 192 /* ... Which allows concurrent read & write operations. */
|
||||
#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. */
|
||||
# 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
|
||||
{
|
||||
|
@ -122,14 +122,16 @@
|
||||
# define LOCK_RW 192 /* ... Which allows concurrent read & write operations. */
|
||||
#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. */
|
||||
# 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
|
||||
{
|
||||
|
@ -138,14 +138,16 @@
|
||||
# define LOCK_RW 192 /* ... Which allows concurrent read & write operations. */
|
||||
#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. */
|
||||
# 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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user