This is the mail archive of the
java-discuss@sourceware.cygnus.com
mailing list for the Java project.
Re: threads+CNI+SIGINT
- To: Jeff Sturm <jsturm at sigma6 dot com>
- Subject: Re: threads+CNI+SIGINT
- From: Tom Tromey <tromey at cygnus dot com>
- Date: Mon, 27 Mar 2000 09:12:18 -0800 (PST)
- Cc: Oskar Liljeblad <osk at hem dot passagen dot se>, cedric at wireless-networks dot com, java-discuss at sourceware dot cygnus dot com
- References: <20000327182109.A10624@strix.eductussyd.se><38DF9536.178D1401@sigma6.com>
Jeff> In a native CNI method, what signal handlers (if any) can I
Jeff> safely install? Some signals are reserved by boehm-gc and
Jeff> linuxthreads. Is this documented? (I know, I'm too
Jeff> lazy/time-crunched to go look for myself.)
This area isn't documented.
You could probably handle any signal that isn't handled by the GC,
LinuxThreads, or by the runtime (the runtime currently handles SIGSEGV,
SIGFPE, and SIGPIPE).
Tom