Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
9 years, 5 months ago.
RTOS Waiting time
What is the difference between the functions wait() and Thread::wait() in RTOS framework?
1 Answer
9 years, 5 months ago.
Nothing.
The Thread class has a static public member function wait(). The way once accesses static members of a class is with the :: operator. So, one invokes the static wait() function as Thread::wait().