class HPCxx_Thread{
public:
HPCxx_Thread(const char *name = NULL);
HPCxx_Thread(HPCxx_Runnable *runnable,
const char *name = NULL);
virtual ~HPCxx_Thread();
HPCxx_Thread& operator=(const HPCxx_Thread& thread);
virtual void run();
static void stop(void *status);
static void yield();
void resume();
int isAlive();
static HPCxx_Thread *currentThread();
void join(long milliseconds = 0,
long nanoseconds = 0);
void setName(const char *name);
const char *getName();
int getPriority();
int setPriority(int priority);
static void sleep(long milliseconds,
long nanoseconds = 0);
void suspend();
void start();
};
Last modified: Thu Apr 22 00:23:56 EST 1999