Lines Matching full:wait
31 virtual int wait(void) = 0;
32 virtual int wait(int timeout) = 0;
56 virtual int wait(void);
57 virtual int wait(int timeout);
71 * @brief wait for a semaphore
78 int cpp_semaphore::wait(void) in wait() function in cpp_semaphore
85 * @brief wait for a semaphore within a specified timeout
95 int cpp_semaphore::wait(int timeout) in wait() function in cpp_semaphore
120 /* wait for main thread to let us have a turn */ in coop_thread_entry()
121 sem_coop.wait(); in coop_thread_entry()
126 /* wait a while, then let main thread have a turn */ in coop_thread_entry()
146 /* wait a while, then let coop thread have a turn */ in main()
151 /* Wait for coop thread to let us have a turn */ in main()
152 sem_main.wait(); in main()