mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 13:30:06 +00:00
Update.
2000-08-12 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_FCNTL64): Define for 2.4.1 on sparc as well. * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Fill in correct values for F_GETLK64, F_SETLK64, and F_SETLKW64. * sysdeps/unix/sysv/linux/sparc/sparc32/fcntl.c: New file. * sysdeps/unix/sysv/linux/sparc/sparc32/lockf64.c: New file.
This commit is contained in:
parent
f39b19c7ee
commit
00c02822b8
@ -1,3 +1,12 @@
|
||||
2000-08-12 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_FCNTL64):
|
||||
Define for 2.4.1 on sparc as well.
|
||||
* sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Fill in correct values
|
||||
for F_GETLK64, F_SETLK64, and F_SETLKW64.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/fcntl.c: New file.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/lockf64.c: New file.
|
||||
|
||||
2000-08-12 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* io/fts.c (fts_stat): Recognize DT_WHT only if S_IFWHT is also
|
||||
|
@ -88,10 +88,15 @@
|
||||
# define F_GETSIG 11 /* Get number of signal to be sent. */
|
||||
#endif
|
||||
|
||||
/* 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). */
|
||||
#if __WORDSIZE == 64
|
||||
#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). */
|
||||
#else
|
||||
#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
|
||||
|
||||
/* for F_[GET|SET]FL */
|
||||
#define FD_CLOEXEC 1 /* actually anything with low bit set goes */
|
||||
|
1
sysdeps/unix/sysv/linux/sparc/sparc32/fcntl.c
Normal file
1
sysdeps/unix/sysv/linux/sparc/sparc32/fcntl.c
Normal file
@ -0,0 +1 @@
|
||||
#include <sysdeps/unix/sysv/linux/i386/fcntl.c>
|
1
sysdeps/unix/sysv/linux/sparc/sparc32/lockf64.c
Normal file
1
sysdeps/unix/sysv/linux/sparc/sparc32/lockf64.c
Normal file
@ -0,0 +1 @@
|
||||
#include <sysdeps/unix/sysv/linux/i386/lockf64.c>
|
Loading…
Reference in New Issue
Block a user