[Mono-bugs] [Bug 57168][Nor] New - mono/io-layer/processes.c missing include
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sat, 17 Apr 2004 06:16:09 -0400 (EDT)
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 recht@netbsd.org.
http://bugzilla.ximian.com/show_bug.cgi?id=57168
--- shadow/57168 2004-04-17 06:16:09.000000000 -0400
+++ shadow/57168.tmp.13057 2004-04-17 06:16:09.000000000 -0400
@@ -0,0 +1,40 @@
+Bug#: 57168
+Product: Mono: Runtime
+Version: unspecified
+OS: other
+OS Details: NetBSD 2.0_BETA i386
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: recht@netbsd.org
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: mono/io-layer/processes.c missing include
+
+Description of Problem:
+
+mono/io-layer/processes.c needs to include <signal.h> to get the defintions
+of SIGKILL and SIGTERM. (At least on NetBSD.)
+
+Additional Information:
+
+Index: mono/io-layer/processes.c
+===================================================================
+RCS file: /mono/mono/mono/io-layer/processes.c,v
+retrieving revision 1.21
+diff -u -u -b -r1.21 processes.c
+--- mono/io-layer/processes.c 25 Mar 2004 23:45:40 -0000 1.21
++++ mono/io-layer/processes.c 17 Apr 2004 11:16:24 -0000
+@@ -20,6 +20,7 @@
+ #include <errno.h>
+ #include <sys/types.h>
+ #include <unistd.h>
++#include <signal.h>
+
+ #include <mono/io-layer/wapi.h>
+ #include <mono/io-layer/wapi-private.h>