PR lto/60571
* lto.c (wait_for_child): Define WCONTINUED if not defined to 0.
Fix formatting.
From-SVN: r208675
+2014-03-19 Jakub Jelinek <jakub@redhat.com>
+
+ PR lto/60571
+ * lto.c (wait_for_child): Define WCONTINUED if not defined to 0.
+ Fix formatting.
+
2014-03-18 Jakub Jelinek <jakub@redhat.com>
PR sanitizer/60535
int status;
do
{
- int w = waitpid(0, &status, WUNTRACED | WCONTINUED);
+#ifndef WCONTINUED
+#define WCONTINUED 0
+#endif
+ int w = waitpid (0, &status, WUNTRACED | WCONTINUED);
if (w == -1)
fatal_error ("waitpid failed");
else if (WIFSIGNALED (status))
fatal_error ("streaming subprocess was killed by signal");
}
- while (!WIFEXITED(status) && !WIFSIGNALED(status));
+ while (!WIFEXITED (status) && !WIFSIGNALED (status));
}
#endif