Searched defs:spin (Results 1 - 1 of 1) sorted by relevance

/ast/src/lib/libtaso/
H A Dtaso.c40 Aso_spin_t* spin = (Aso_spin_t*)data; local
42 if (spin)
44 pthread_spin_destroy(&spin->lock);
45 free(spin);
48 if (!(spin = (Aso_spin_t*)malloc(sizeof(Aso_spin_t))))
50 pthread_spin_init(&spin->lock, 0);
51 return spin;
57 Aso_spin_t* spin = (Aso_spin_t*)data; local
60 pthread_spin_unlock(&spin->lock);
62 pthread_spin_lock(&spin
[all...]

Completed in 6 milliseconds