exec_thread
REQUIRE(pthread_create(&thread, NULL, exec_thread, NULL) == 0);
CHILD_REQUIRE_EQ(pthread_create(&thread, NULL, exec_thread, NULL), 0);
exec_thread(NULL);