MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / main

Function main

test/core/pthread/test_pthread_dlsym.c:60–70  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58}
59
60int main() {
61 printf("in main\n");
62 test_order1();
63
64 pthread_t t;
65 int rc = pthread_create(&t, NULL, thread_main, NULL);
66 assert(rc == 0);
67 pthread_join(t, NULL);
68
69 return 0;
70}

Callers

nothing calls this directly

Calls 3

printfFunction · 0.85
test_order1Function · 0.85
assertFunction · 0.50

Tested by

no test coverage detected