comparison src/mem-limits.h @ 2917:725698689fbd

Some more changes from Michael K. Johnson for Linux. * s/template.h: Mention that you should #define HAVE_TERMIO or HAVE_TERMIOS, but not both, and that HAVE_TERMIOS is preferred. * systty.h (EMACS_SET_TTY_PGRP): Don't assign the return value of tcsetpgrp to *pgid; it's just a status value. * config.h.in (HAVE_RANDOM): This shouldn't be defined on Linux systems using XFree386, and perhaps is inappropriate in general. * m/intel386.h: #undefine the integer size macros, since the Linux <values.h> file #defines them itself. * mem-limits.h (get_lim_data): Linux has the ulimit call; if it fails, fall back on ULIMIT_BREAK_VALUE. * process.c: Linux needs the WAITTYPE, etc. definitions. * unexec.c (hdr, ohdr): Linux has the ordinary `struct exec' type; no need to use SYSV names. * s/linux.h: New file.
author Jim Blandy <jimb@redhat.com>
date Thu, 20 May 1993 02:14:56 +0000
parents 613783a3f00c
children e94a593c3952
comparison
equal deleted inserted replaced
2916:375bf7b38e48 2917:725698689fbd
75 75
76 static void 76 static void
77 get_lim_data () 77 get_lim_data ()
78 { 78 {
79 extern long ulimit (); 79 extern long ulimit ();
80 80
81 lim_data = -1;
82
83 /* Use the ulimit call, if we seem to have it. */
84 #if !defined (ULIMIT_BREAK_VALUE) || defined (LINUX)
85 lim_data = ulimit (3, 0);
86 #endif
87
88 /* If that didn't work, just use the macro's value. */
81 #ifdef ULIMIT_BREAK_VALUE 89 #ifdef ULIMIT_BREAK_VALUE
82 lim_data = ULIMIT_BREAK_VALUE; 90 if (lim_data == -1)
83 #else 91 lim_data = ULIMIT_BREAK_VALUE;
84 lim_data = ulimit (3, 0);
85 #endif 92 #endif
86 93
87 lim_data -= (long) data_space_start; 94 lim_data -= (long) data_space_start;
88 } 95 }
89 96