|
int | starpu_pthread_create_on (char *name, starpu_pthread_t *thread, const starpu_pthread_attr_t *attr, void *(*start_routine)(void *), void *arg, int where) |
|
int | starpu_pthread_create (starpu_pthread_t *thread, const starpu_pthread_attr_t *attr, void *(*start_routine)(void *), void *arg) |
|
int | starpu_pthread_join (starpu_pthread_t thread, void **retval) |
|
int | starpu_pthread_exit (void *retval) |
|
int | starpu_pthread_attr_init (starpu_pthread_attr_t *attr) |
|
int | starpu_pthread_attr_destroy (starpu_pthread_attr_t *attr) |
|
int | starpu_pthread_attr_setdetachstate (starpu_pthread_attr_t *attr, int detachstate) |
|
int | starpu_pthread_mutex_init (starpu_pthread_mutex_t *mutex, const starpu_pthread_mutexattr_t *mutexattr) |
|
int | starpu_pthread_mutex_destroy (starpu_pthread_mutex_t *mutex) |
|
int | starpu_pthread_mutex_lock (starpu_pthread_mutex_t *mutex) |
|
int | starpu_pthread_mutex_unlock (starpu_pthread_mutex_t *mutex) |
|
int | starpu_pthread_mutex_trylock (starpu_pthread_mutex_t *mutex) |
|
int | starpu_pthread_mutexattr_gettype (const starpu_pthread_mutexattr_t *attr, int *type) |
|
int | starpu_pthread_mutexattr_settype (starpu_pthread_mutexattr_t *attr, int type) |
|
int | starpu_pthread_mutexattr_destroy (starpu_pthread_mutexattr_t *attr) |
|
int | starpu_pthread_mutexattr_init (starpu_pthread_mutexattr_t *attr) |
|
int | starpu_pthread_key_create (starpu_pthread_key_t *key, void(*destr_function)(void *)) |
|
int | starpu_pthread_key_delete (starpu_pthread_key_t key) |
|
int | starpu_pthread_setspecific (starpu_pthread_key_t key, const void *pointer) |
|
void * | starpu_pthread_getspecific (starpu_pthread_key_t key) |
|
int | starpu_pthread_cond_init (starpu_pthread_cond_t *cond, starpu_pthread_condattr_t *cond_attr) |
|
int | starpu_pthread_cond_signal (starpu_pthread_cond_t *cond) |
|
int | starpu_pthread_cond_broadcast (starpu_pthread_cond_t *cond) |
|
int | starpu_pthread_cond_wait (starpu_pthread_cond_t *cond, starpu_pthread_mutex_t *mutex) |
|
int | starpu_pthread_cond_timedwait (starpu_pthread_cond_t *cond, starpu_pthread_mutex_t *mutex, const struct timespec *abstime) |
|
int | starpu_pthread_cond_destroy (starpu_pthread_cond_t *cond) |
|
int | starpu_pthread_rwlock_init (starpu_pthread_rwlock_t *rwlock, const starpu_pthread_rwlockattr_t *attr) |
|
int | starpu_pthread_rwlock_destroy (starpu_pthread_rwlock_t *rwlock) |
|
int | starpu_pthread_rwlock_rdlock (starpu_pthread_rwlock_t *rwlock) |
|
int | starpu_pthread_rwlock_tryrdlock (starpu_pthread_rwlock_t *rwlock) |
|
int | starpu_pthread_rwlock_wrlock (starpu_pthread_rwlock_t *rwlock) |
|
int | starpu_pthread_rwlock_trywrlock (starpu_pthread_rwlock_t *rwlock) |
|
int | starpu_pthread_rwlock_unlock (starpu_pthread_rwlock_t *rwlock) |
|
int | starpu_pthread_barrier_init (starpu_pthread_barrier_t *barrier, const starpu_pthread_barrierattr_t *attr, unsigned count) |
|
int | starpu_pthread_barrier_destroy (starpu_pthread_barrier_t *barrier) |
|
int | starpu_pthread_barrier_wait (starpu_pthread_barrier_t *barrier) |
|
int | starpu_pthread_spin_init (starpu_pthread_spinlock_t *lock, int pshared) |
|
int | starpu_pthread_spin_destroy (starpu_pthread_spinlock_t *lock) |
|
int | starpu_pthread_spin_lock (starpu_pthread_spinlock_t *lock) |
|
int | starpu_pthread_spin_trylock (starpu_pthread_spinlock_t *lock) |
|
int | starpu_pthread_spin_unlock (starpu_pthread_spinlock_t *lock) |
|