102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
+ (OFThread*)currentThread;
/**
* Suspends execution of the current thread for N milliseconds.
*/
+ (void)sleepForNMilliseconds: (unsigned int)msecs;
/**
* Terminates the current thread, letting it return nil.
*/
+ (void)terminate;
/**
* Terminates the current thread, letting it return the specified object.
|
>
>
>
>
>
>
|
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
+ (OFThread*)currentThread;
/**
* Suspends execution of the current thread for N milliseconds.
*/
+ (void)sleepForNMilliseconds: (unsigned int)msecs;
/**
* Yields a processor voluntarily and moves the thread at the end of the queue
* for its priority.
*/
+ (void)yield;
/**
* Terminates the current thread, letting it return nil.
*/
+ (void)terminate;
/**
* Terminates the current thread, letting it return the specified object.
|