[hipl-dev] [Branch ~hipl-core/hipl/trunk] Rev 6439: in sig_chld(int) change variable 'status' type from 'union wait' to 'int'

  • From: noreply@xxxxxxxxxxxxx
  • To: HIPL core team <hipl-dev@xxxxxxxxxxxxx>
  • Date: Tue, 22 Oct 2013 19:17:26 -0000

------------------------------------------------------------
revno: 6439
committer: Juhani Toivonen <juhani.toivonen@xxxxxxxxxxxxxx>
branch nick: trunk
timestamp: Tue 2013-10-22 22:16:18 +0300
message:
  in sig_chld(int) change variable 'status' type from 'union wait' to 'int'
modified:
  libhipl/init.c


--
lp:hipl
https://code.launchpad.net/~hipl-core/hipl/trunk

Your team HIPL core team is subscribed to branch lp:hipl.
To unsubscribe from this branch go to 
https://code.launchpad.net/~hipl-core/hipl/trunk/+edit-subscription
=== modified file 'libhipl/init.c'
--- libhipl/init.c      2012-07-12 11:32:14 +0000
+++ libhipl/init.c      2013-10-22 19:16:18 +0000
@@ -164,8 +164,8 @@
  */
 static void sig_chld(int signum)
 {
-    union wait status;
-    int        pid;
+    int status;
+    int pid;
 
     signal(signum, sig_chld);
 

Other related posts:

  • » [hipl-dev] [Branch ~hipl-core/hipl/trunk] Rev 6439: in sig_chld(int) change variable 'status' type from 'union wait' to 'int' - noreply