public:
DSThread();
Create a thread object. The thread is not spawned until a subsequent exec() call.
public:
void detach();
Detaches a thread.
public:
int exec(void *(*start)(void *), void * arg);
Executes a thread.
Name Description start This is the name of a function to be executed when the thread initiates. arg This is a pointer to data that the thread function will receive.
public:
~DSThread();
Destroy a Thread object. If a thread has been initiated, it is not terminated.
Generated with HeaderDoc - © 2000 Apple Computer, Inc. (Last Updated 9/29/2003)