comparison libpurple/util.c @ 15662:fc981ec147a6

merge of '2f881bb7bad3beb5ec8384245c1350050d4b73a1' and 'f8222d7e7629ab348f5b757d931ecfb874f9794d'
author Evan Schoenberg <evan.s@dreskin.net>
date Mon, 19 Feb 2007 04:55:48 +0000
parents 122be0df0567 80944a182710
children 868c9d2cb818 f344b5cc2fc9
comparison
equal deleted inserted replaced
15659:94a19bde141d 15662:fc981ec147a6
4122 signal(SIGINT, SIG_DFL); /* 2: interrupt program */ 4122 signal(SIGINT, SIG_DFL); /* 2: interrupt program */
4123 signal(SIGQUIT, SIG_DFL); /* 3: quit program */ 4123 signal(SIGQUIT, SIG_DFL); /* 3: quit program */
4124 signal(SIGILL, SIG_DFL); /* 4: illegal instruction (not reset when caught) */ 4124 signal(SIGILL, SIG_DFL); /* 4: illegal instruction (not reset when caught) */
4125 signal(SIGTRAP, SIG_DFL); /* 5: trace trap (not reset when caught) */ 4125 signal(SIGTRAP, SIG_DFL); /* 5: trace trap (not reset when caught) */
4126 signal(SIGABRT, SIG_DFL); /* 6: abort program */ 4126 signal(SIGABRT, SIG_DFL); /* 6: abort program */
4127
4128 #ifdef SIGPOLL
4129 signal(SIGPOLL, SIG_DFL); /* 7: pollable event (POSIX) */
4130 #endif /* SIGPOLL */
4131
4127 #ifdef SIGEMT 4132 #ifdef SIGEMT
4128 signal(SIGEMT, SIG_DFL); /* 7: EMT instruction */ 4133 signal(SIGEMT, SIG_DFL); /* 7: EMT instruction (Non-POSIX) */
4129 #endif 4134 #endif /* SIGEMT */
4135
4130 signal(SIGFPE, SIG_DFL); /* 8: floating point exception */ 4136 signal(SIGFPE, SIG_DFL); /* 8: floating point exception */
4131 signal(SIGBUS, SIG_DFL); /* 10: bus error */ 4137 signal(SIGBUS, SIG_DFL); /* 10: bus error */
4132 signal(SIGSEGV, SIG_DFL); /* 11: segmentation violation */ 4138 signal(SIGSEGV, SIG_DFL); /* 11: segmentation violation */
4133 signal(SIGSYS, SIG_DFL); /* 12: bad argument to system call */ 4139 signal(SIGSYS, SIG_DFL); /* 12: bad argument to system call */
4134 signal(SIGPIPE, SIG_DFL); /* 13: write on a pipe with no reader */ 4140 signal(SIGPIPE, SIG_DFL); /* 13: write on a pipe with no reader */
4135 signal(SIGALRM, SIG_DFL); /* 14: real-time timer expired */ 4141 signal(SIGALRM, SIG_DFL); /* 14: real-time timer expired */
4136 signal(SIGTERM, SIG_DFL); /* 15: software termination signal */ 4142 signal(SIGTERM, SIG_DFL); /* 15: software termination signal */
4137 signal(SIGCHLD, SIG_DFL); /* 20: child status has changed */ 4143 signal(SIGCHLD, SIG_DFL); /* 20: child status has changed */
4138 signal(SIGXCPU, SIG_DFL); /* 24: exceeded CPU time limit */ 4144 signal(SIGXCPU, SIG_DFL); /* 24: exceeded CPU time limit */
4139 signal(SIGXFSZ, SIG_DFL); /* 25: exceeded file size limit */ 4145 signal(SIGXFSZ, SIG_DFL); /* 25: exceeded file size limit */
4140 #endif 4146 #endif /* HAVE_SIGNAL_H */
4141 } 4147 }