[Mono-bugs] [Bug 75387][Wis] Changed - [PATCH] SIGRTMIN not always usable

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Wed Jun 29 19:45:45 EDT 2005


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by miguel at ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=75387

--- shadow/75387	2005-06-27 08:02:33.000000000 -0400
+++ shadow/75387.tmp.2222	2005-06-29 19:45:45.000000000 -0400
@@ -31,6 +31,27 @@
 at least 8 signals.
 
 ------- Additional Comments From robertj at gmx.net  2005-06-27 05:36 -------
 Created an attachment (id=15386)
 sigrtmin.diff
 
+
+------- Additional Comments From miguel at ximian.com  2005-06-29 19:45 -------
+I would rather have some way of testing for this than mkaing the
+change on every distribution.  
+
+This patch only turns the problem into a potentially different problem.
+
+What we probably need to have is a way of "probing" if these signals
+are being used, something like this:
+
+handler = -1;
+for (int i = SIGRTMIN; i < SIGRTMAX; i++){
+    sigaction (i, NULL, &old);
+    if (old.sa_handler == NOT_SET){
+       handler = i; break; 
+    }
+}
+
+Now, the above only works if signals have been preset before Mono has
+been invoked.  Am not sure if there is a reliable way of coping with
+this problem 


More information about the mono-bugs mailing list