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

/bionic/libc/include/
H A Dpthread.h269 int pthread_setname_np(pthread_t thid, const char *thname);
/bionic/libc/bionic/
H A Dpthread.c1886 int pthread_setname_np(pthread_t thid, const char *thname) argument
1891 if (thid == 0 || thname == NULL)
1894 thname_len = strlen(thname);
1901 ret = prctl(PR_SET_NAME, (unsigned long)thname, 0, 0, 0) ? errno : 0;
1918 n = TEMP_FAILURE_RETRY(write(fd, thname, thname_len));

Completed in 23 milliseconds