blob: eb4ebfd7446ba41b6d7ddf8887258c3c2aa1bfe8 [file] [log] [blame]
#include <threads.h>
#include <stdint.h>
#include "threads_impl.h"
int thrd_join(thrd_t t, int* res) {
void* pthread_res;
__pthread_join(t, &pthread_res);
if (res)
*res = (int)(intptr_t)pthread_res;
return thrd_success;
}