Lines Matching refs:cookie
51 struct __thrd_tramp_data *cookie; in __thrd_create_tramp() local
56 cookie = (struct __thrd_tramp_data *)arg; in __thrd_create_tramp()
58 ret = (cookie->func)(cookie->arg); in __thrd_create_tramp()
60 free(cookie); in __thrd_create_tramp()
68 struct __thrd_tramp_data *cookie; in thrd_create() local
74 cookie = malloc(sizeof(*cookie)); in thrd_create()
75 if (cookie == NULL) in thrd_create()
78 cookie->func = func; in thrd_create()
79 cookie->arg = arg; in thrd_create()
81 switch(pthread_create(thr, NULL, __thrd_create_tramp, cookie)) { in thrd_create()
91 free(cookie); in thrd_create()