Change back old RLIM_INFINITY value.

This commit is contained in:
Ulrich Drepper 2000-01-24 01:40:41 +00:00
parent 7c058212fe
commit 0a2bba7960

View File

@ -84,13 +84,13 @@ enum __rlimit_resource
/* Value to indicate that there is no limit. */
#ifndef __USE_FILE_OFFSET64
# define RLIM_INFINITY ((unsigned long int) (~0UL))
# define RLIM_INFINITY ((long int) (~0UL >> 1))
#else
# define RLIM_INFINITY 0xffffffffffffffffuLL
# define RLIM_INFINITY 0x7fffffffffffffffLL
#endif
#ifdef __USE_LARGEFILE64
# define RLIM64_INFINITY 0xffffffffffffffffuLL
# define RLIM64_INFINITY 0x7fffffffffffffffLL
#endif
/* We can represent all limits. */