9 years, 1 month ago.

RTOS Waiting time

What is the difference between the functions wait() and Thread::wait() in RTOS framework?

1 Answer

9 years, 1 month 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().

Accepted Answer