HomeSort by relevance Sort by last modified time
    Searched refs:dng_pthread_t (Results 1 - 2 of 2) sorted by null

  /external/dng_sdk/source/
dng_pthread.h 68 typedef unsigned long dng_pthread_t; typedef
96 int dng_pthread_create(dng_pthread_t *thread, const dng_pthread_attr_t * /* attrs */, void * (*func)(void *), void *arg);
97 int dng_pthread_detach(dng_pthread_t thread);
98 int dng_pthread_join(dng_pthread_t thread, void **result);
99 dng_pthread_t dng_pthread_self();
165 #define pthread_t dng_pthread_t
dng_pthread.cpp 310 int dng_pthread_create(dng_pthread_t *thread, const pthread_attr_t *attrs, void * (*func)(void *), void *arg)
349 *thread = (dng_pthread_t)threadID;
360 int dng_pthread_detach(dng_pthread_t thread)
393 int dng_pthread_join(dng_pthread_t thread, void **result)
449 dng_pthread_t dng_pthread_self()
451 return (dng_pthread_t)::GetCurrentThreadId();

Completed in 62 milliseconds