Code review comment for lp:~manjo/checkbox/stress-test

Revision history for this message
Zygmunt Krynicki (zyga) wrote :

223 + if (pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE)) {
224 + fprintf(stderr, "ERROR: pthread_attr_setdetachstate() failed\n");
225 + exit(3);
226 + }

JOINABLE is default, you don't need to set it

« Back to merge proposal