Home
last modified time | relevance | path

Searched refs:frk (Results 1 – 1 of 1) sorted by relevance

/Zephyr-latest/samples/posix/philosophers/src/
Dmain.c38 static inline void fork_init(fork_t frk) in fork_init() argument
42 ret = pthread_mutex_init(frk, NULL); in fork_init()
55 static inline void take(fork_t frk) in take() argument
59 ret = pthread_mutex_lock(frk); in take()
67 static inline void drop(fork_t frk) in drop() argument
71 ret = pthread_mutex_unlock(frk); in drop()