15 lines
461 B
Diff
15 lines
461 B
Diff
--- rt-8u202-b02/modules/fxpackager/src/main/native/library/common/PosixPlatform.cpp 2018-10-29 16:26:04.000000000 +0100
|
|
+++ rt-8u202-b02-patched/modules/fxpackager/src/main/native/library/common/PosixPlatform.cpp 2018-11-27 15:34:52.170181958 +0100
|
|
@@ -232,10 +232,7 @@
|
|
pid_t wpid = 0;
|
|
|
|
//TODO Use waitpid instead of wait
|
|
-#ifdef LINUX
|
|
- wait(&status);
|
|
-#endif
|
|
-#ifdef MAC
|
|
+#if defined(LINUX) || defined(MAC)
|
|
wpid = wait(&status);
|
|
#endif
|
|
|