- 
    Bug 
- 
    Resolution: Duplicate
- 
     P3 P3
- 
    None
- 
    9
                    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.
- duplicates
- 
                    JDK-8189689 JavaFX build fails with gcc 6 -           
- Resolved
 
-         
- 
                    JDK-8170774 OpenJFX cannot be built on Fedora 25 -           
- Closed
 
-