Searched refs:thname (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/include/
H A Dpthread.h273 int pthread_setname_np(pthread_t thid, const char *thname);
/bionic/libc/bionic/
H A Dpthread.c2238 int pthread_setname_np(pthread_t thid, const char *thname) argument
2243 if (thid == 0 || thname == NULL)
2246 thname_len = strlen(thname);
2253 ret = prctl(PR_SET_NAME, (unsigned long)thname, 0, 0, 0) ? errno : 0;
2270 n = TEMP_FAILURE_RETRY(write(fd, thname, thname_len));

Completed in 42 milliseconds