Files
lammps/lib/kokkos/cmake/compile_tests/pthread.cpp
2020-03-25 14:08:39 -06:00

11 lines
203 B
C++

#include <pthread.h>
void* kokkos_test(void* args) { return args; }
int main(void) {
pthread_t thread;
pthread_create(&thread, NULL, kokkos_test, NULL);
pthread_join(thread, NULL);
return 0;
}