mailing list of musl libc
 help / color / mirror / code / Atom feed
ac6678939f6b3436818936eaf56b395479c4f3c2 blob 266 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
 
#include <stdint.h>
#include <threads.h>

int __pthread_join(thrd_t, void**);

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;
}
debug log:

solving ac66789 ...
found ac66789 in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).