#include <BThread.h>
Inheritance diagram for BThread:
Public Member Functions | |
BThread () | |
virtual | ~BThread () |
int | setInitPriority (int policy, int priority) |
int | setInitStackSize (size_t stackSize) |
int | start () |
void * | result () |
int | running () |
int | setPriority (int policy, int priority) |
int | cancel () |
void * | waitForCompletion () |
pthread_t | getThread () |
virtual void * | function () |
Static Private Member Functions | |
static void * | startFunc (void *) |
Private Attributes | |
pthread_t | othread |
size_t | ostackSize |
int | opolicy |
int | opriority |
int | orunning |
void * | oresult |
BThread::BThread | ( | ) |
BThread::~BThread | ( | ) | [virtual] |
int BThread::cancel | ( | ) |
void * BThread::function | ( | ) | [virtual] |
Reimplemented in BoapServerConnection, BoapServer, and BRtcThreaded.
pthread_t BThread::getThread | ( | ) |
void * BThread::result | ( | ) |
int BThread::running | ( | ) |
int BThread::setInitPriority | ( | int | policy, | |
int | priority | |||
) |
int BThread::setInitStackSize | ( | size_t | stackSize | ) |
int BThread::setPriority | ( | int | policy, | |
int | priority | |||
) |
int BThread::start | ( | ) |
void * BThread::startFunc | ( | void * | ) | [static, private] |
void * BThread::waitForCompletion | ( | ) |
int BThread::opolicy [private] |
int BThread::opriority [private] |
void* BThread::oresult [private] |
int BThread::orunning [private] |
size_t BThread::ostackSize [private] |
pthread_t BThread::othread [private] |