[10614] in Athena Bugs
athena/athena.bin/discuss/edsc/edsc.c
daemon@ATHENA.MIT.EDU (brlewis@Athena.MIT.EDU)
Fri Jun 25 13:42:39 1993
From: brlewis@Athena.MIT.EDU
Date: Fri, 25 Jun 93 13:40:49 -0400
To: rel-eng@Athena.MIT.EDU, bugs@Athena.MIT.EDU
Cc: bug-discuss@Athena.MIT.EDU
This bit of code kept edsc from compiling under HP-UX. Maybe it should
be yanked out entirely.
*** /tmp/,RCSt1a18851 Fri Jun 25 13:39:20 1993
--- athena/athena.bin/discuss/edsc/edsc.c Wed Jun 9 13:07:50 1993
***************
*** 148,156 ****
--- 148,158 ----
* Set up debugging hooks. Also useful becuase it means we clean
* up our cache files in case we die ungracefully.
*/
+ #ifndef hpux
getrlimit(RLIMIT_CORE, &limit);
limit.rlim_cur = limit.rlim_max;
setrlimit(RLIMIT_CORE, &limit);
+ #endif
#ifdef SIGILL
signal(SIGILL, crash_handler);
#endif