Skip to content
Snippets Groups Projects
Commit 1b913419 authored by Per Hedbor's avatar Per Hedbor
Browse files

Numera är alla trådar med THR_DETACHED

Rev: src/threads.h:1.30
parent e14d1af0
Branches
Tags
No related merge requests found
......@@ -113,7 +113,7 @@ extern pthread_attr_t small_pattr;
#define th_setconcurrency(X) thr_setconcurrency(X)
#define th_create(ID,fun,arg) thr_create(NULL,0,fun,arg,THR_DAEMON,ID)
#define th_create(ID,fun,arg) thr_create(NULL,0,fun,arg,THR_DAEMON|THR_DETACHED,ID)
#define th_create_small(ID,fun,arg) thr_create(NULL,32768,fun,arg,THR_DAEMON|THR_DETACHED,ID)
#define th_exit(foo) thr_exit(foo)
#define th_self() thr_self()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment