Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P3
-
Resolution: Duplicate
-
Affects Version/s: 9
-
Fix Version/s: None
-
Component/s: deploy
-
Labels:
-
Subcomponent:
Description
The code in PosixPlatform.cpp:
//TODO Use waitpid instead of wait
#ifdef LINUX
wait();
#endif
#ifdef MAC
wpid = wait(&status);
#endif
would be more correct to be using waitpid instead of wait. I didn't have good luck using waitpid and there is no good reason at the moment to spin up two processes so wait works, however waitpid is more correct.
//TODO Use waitpid instead of wait
#ifdef LINUX
wait();
#endif
#ifdef MAC
wpid = wait(&status);
#endif
would be more correct to be using waitpid instead of wait. I didn't have good luck using waitpid and there is no good reason at the moment to spin up two processes so wait works, however waitpid is more correct.
Attachments
Issue Links
- duplicates
-
JDK-8189689 JavaFX build fails with gcc 6
-
- Resolved
-
-
JDK-8170774 OpenJFX cannot be built on Fedora 25
-
- Resolved
-