| 95 | |
| 96 | #ifndef _WIN32 |
| 97 | static void |
| 98 | do_test_fork_multithreaded() { |
| 99 | thd_t child; |
| 100 | thd_create(&child, do_fork_thd, NULL); |
| 101 | do_fork_thd(NULL); |
| 102 | thd_join(child, NULL); |
| 103 | } |
| 104 | #endif |
| 105 | |
| 106 | TEST_BEGIN(test_fork_multithreaded) { |
no test coverage detected