mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
* sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIM_INFINITY,
RLIM64_INFINITY): Fix 64-bit values for 32-bit sparc.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2011-08-14 David S. Miller <davem@davemloft.net>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIM_INFINITY,
|
||||||
|
RLIM64_INFINITY): Fix 64-bit values for 32-bit sparc.
|
||||||
|
|
||||||
2011-08-13 Ulrich Drepper <drepper@gmail.com>
|
2011-08-13 Ulrich Drepper <drepper@gmail.com>
|
||||||
|
|
||||||
* elf/dl-open.c: Rename show_scope to _dl_schow_scope and export.
|
* elf/dl-open.c: Rename show_scope to _dl_schow_scope and export.
|
||||||
|
@ -130,11 +130,11 @@ enum __rlimit_resource
|
|||||||
#ifndef __USE_FILE_OFFSET64
|
#ifndef __USE_FILE_OFFSET64
|
||||||
# define RLIM_INFINITY ((long int)(~0UL >> 1))
|
# define RLIM_INFINITY ((long int)(~0UL >> 1))
|
||||||
#else
|
#else
|
||||||
# define RLIM_INFINITY 0x7fffffffffffffffLL
|
# define RLIM_INFINITY 0xffffffffffffffffLL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __USE_LARGEFILE64
|
#ifdef __USE_LARGEFILE64
|
||||||
# define RLIM64_INFINITY 0x7fffffffffffffffLL
|
# define RLIM64_INFINITY 0xffffffffffffffffLL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user