vala r1845 - in trunk: . vapi



Author: juergbi
Date: Fri Oct 17 11:11:26 2008
New Revision: 1845
URL: http://svn.gnome.org/viewvc/vala?rev=1845&view=rev

Log:
2008-10-17  JÃrg Billeter  <j bitron ch>

	* vapi/glib-2.0.vapi:

	Add missing sys/wait.h includes, patch by Michael Terry,
	fixes bug 556637


Modified:
   trunk/ChangeLog
   trunk/vapi/glib-2.0.vapi

Modified: trunk/vapi/glib-2.0.vapi
==============================================================================
--- trunk/vapi/glib-2.0.vapi	(original)
+++ trunk/vapi/glib-2.0.vapi	Fri Oct 17 11:11:26 2008
@@ -2368,21 +2368,21 @@
 		public static void close_pid (Pid pid);
 		
 		/* these macros are required to examine the exit status of a process */
-		[CCode (cname = "WIFEXITED")]
+		[CCode (cname = "WIFEXITED", cheader_filename = "sys/wait.h")]
 		public static bool if_exited (int status);
-		[CCode (cname = "WEXITSTATUS")]
+		[CCode (cname = "WEXITSTATUS", cheader_filename = "sys/wait.h")]
 		public static int exit_status (int status);
-		[CCode (cname = "WIFSIGNALED")]
+		[CCode (cname = "WIFSIGNALED", cheader_filename = "sys/wait.h")]
 		public static bool if_signaled (int status);
-		[CCode (cname = "WTERMSIG")]
+		[CCode (cname = "WTERMSIG", cheader_filename = "sys/wait.h")]
 		public static ProcessSignal term_sig (int status);
-		[CCode (cname = "WCOREDUMP")]
+		[CCode (cname = "WCOREDUMP", cheader_filename = "sys/wait.h")]
 		public static bool core_dump (int status);
-		[CCode (cname = "WIFSTOPPED")]
+		[CCode (cname = "WIFSTOPPED", cheader_filename = "sys/wait.h")]
 		public static bool if_stopped (int status);
-		[CCode (cname = "WSTOPSIG")]
+		[CCode (cname = "WSTOPSIG", cheader_filename = "sys/wait.h")]
 		public static ProcessSignal stop_sig (int status);
-		[CCode (cname = "WIFCONTINUED")]
+		[CCode (cname = "WIFCONTINUED", cheader_filename = "sys/wait.h")]
 		public static bool if_continued (int status);
 	}
 	



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]