Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

myThread Class Reference

Inheritance diagram for myThread::

Thread List of all members.

Public Methods

 myThread ()
 ~myThread ()
void Setup ()
void Execute (void *arg)

Detailed Description

Test Thread-derived class

Definition at line 25 of file debug_test.cpp.


Constructor & Destructor Documentation

myThread::myThread ( ) [inline]
 

Default constructor calls Thread()

Definition at line 29 of file debug_test.cpp.

00030         {
00031             Thread();
00032         }

myThread::~myThread ( ) [inline]
 

Default destructor calls pthread_exit()

Definition at line 34 of file debug_test.cpp.

00035         {
00036             pthread_exit(0);
00037         }


Member Function Documentation

void myThread::Execute ( void * arg ) [inline, virtual]
 

Execute prints out arg as if it were a character

Reimplemented from Thread.

Definition at line 44 of file debug_test.cpp.

00045         {
00046             {assert(arg != NULL);}
00047             char *t = (char *) arg;
00048             debug2_("argument passed to thread", *t, LOG_NO);//cout << *t << std::endl;
00049         }

void myThread::Setup ( ) [inline, virtual]
 

Nothing to setup really

Reimplemented from Thread.

Definition at line 39 of file debug_test.cpp.

00040         {
00041         }


The documentation for this class was generated from the following file:
Generated at Thu May 30 15:12:34 2002 for Freeagent by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001