You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
748 B
35 lines
748 B
#include <pthread.h> |
|
#include <stdio.h> |
|
#include <stdlib.h> |
|
#include <string.h> |
|
|
|
constexpr int LOOP_COUNT = 100000000; |
|
|
|
void* ChildThreadFunction(void*) { |
|
for (volatile int i = 0; i < LOOP_COUNT; ++i) { |
|
} |
|
return nullptr; |
|
} |
|
|
|
void MainThreadFunction() { |
|
for (volatile int i = 0; i < LOOP_COUNT; ++i) { |
|
} |
|
} |
|
|
|
int main() { |
|
while (true) { |
|
pthread_t thread; |
|
int ret = pthread_create(&thread, nullptr, ChildThreadFunction, nullptr); |
|
if (ret != 0) { |
|
fprintf(stderr, "pthread_create failed: %s\n", strerror(ret)); |
|
exit(1); |
|
} |
|
MainThreadFunction(); |
|
ret = pthread_join(thread, nullptr); |
|
if (ret != 0) { |
|
fprintf(stderr, "pthread_join failed: %s\n", strerror(ret)); |
|
exit(1); |
|
} |
|
} |
|
return 0; |
|
}
|
|
|