Add missing sys/wait.h includes, patch by Michael Terry, fixes bug 556637
authorJürg Billeter <j@bitron.ch>
Fri, 17 Oct 2008 11:11:26 +0000 (11:11 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Fri, 17 Oct 2008 11:11:26 +0000 (11:11 +0000)
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

svn path=/trunk/; revision=1845

ChangeLog
vapi/glib-2.0.vapi

index 5b167ca..c3a97e7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 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
+
+2008-10-17  Jürg Billeter  <j@bitron.ch>
+
        * vapi/packages/gnome-keyring-1/:
 
        Fix gnome_keyring_find_password_sync binding,
index e61b2fc..f1a91cc 100644 (file)
@@ -2368,21 +2368,21 @@ namespace GLib {
                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);
        }