summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2008-10-17 11:11:26 +0000
committerJürg Billeter <juergbi@src.gnome.org>2008-10-17 11:11:26 +0000
commitfe966f9d0521f832307055a723102d28c14038f5 (patch)
tree840c972a78ab009bc5d7307bb76ca808aa92cafc
parentbd77f02f9b67b8d8398c9d4e039a3eed63b7e21d (diff)
downloadvala-fe966f9d0521f832307055a723102d28c14038f5.tar.gz
Add missing sys/wait.h includes, patch by Michael Terry, fixes bug 556637
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
-rw-r--r--ChangeLog7
-rw-r--r--vapi/glib-2.0.vapi16
2 files changed, 15 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 5b167ca1e..c3a97e783 100644
--- 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,
diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi
index e61b2fc0f..f1a91cc50 100644
--- a/vapi/glib-2.0.vapi
+++ b/vapi/glib-2.0.vapi
@@ -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);
}