8 years, 11 months ago.

RTOS Waiting time

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

1 Answer

8 years, 11 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().

Accepted Answer