#include "Types.h"
Namespaces | |
namespace | MPMA |
Classes | |
union | MPMA::ThreadParam |
A user-defined parameter passed to the thread procedure. More... | |
class | MPMA::Thread |
Represents a thread. More... | |
Typedefs | |
typedef void(* | MPMA::ThreadFunc )(class Thread &, ThreadParam) |
A callback function for the thread's procedure. This function should monitor the IsEnding() method of the provided Thread class, and terminate if it ever returns true. | |
Functions | |
void | MPMA::Sleep (uint time) |
Causes the current thread to block for at least time (in milliseconds). 0 just forces a yield. |