Searched defs:scoped_pthread_attr (Results 1 – 1 of 1) sorted by relevance
28 struct scoped_pthread_attr { struct29 scoped_pthread_attr() { pthread_attr_init(&attr); } in scoped_pthread_attr() argument30 ~scoped_pthread_attr() { pthread_attr_destroy(&attr); } in ~scoped_pthread_attr() argument32 int detach() { return -pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); } in detach()34 pthread_attr_t attr;