Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members  

thread.hh

00001 /*
00002 *  Name:      thread.hh
00003 *  Author:    Rafael Jesus Alcantara Perez
00004 *  Summary:   Thread class for POSIX 1003.1c compliant threads
00005 *  Date:      $Date: 2003/08/08 23:30:34 $
00006 *  Revision:  $Revision: 1.2 $
00007 *
00008 *  Copyright (C) 1994-2002  Rafael Jesus Alcantara Perez <rafa@dedalo-ing.com>
00009 *
00010 *  This program is free software; you can redistribute it and/or modify
00011 *  it under the terms of the GNU General Public License as published by
00012 *  the Free Software Foundation; either version 2 of the License, or
00013 *  (at your option) any later version.
00014 *
00015 *  This program is distributed in the hope that it will be useful,
00016 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00017 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018 *  GNU General Public License for more details.
00019 *
00020 *  You should have received a copy of the GNU General Public License
00021 *  along with this program; if not, write to the Free Software
00022 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
00023 *  MA 02111-1307, USA.
00024 */
00025 
00026 #ifndef _MPCL_SYSTEM_POSIX_1_THREAD__
00027 #define _MPCL_SYSTEM_POSIX_1_THREAD__
00028 
00029 #include <pthread.h>
00030 #include "../thread.hh"
00031 
00032 
00034 namespace mpcl
00035 {
00036 
00038   namespace system
00039   {
00040 
00045     class TThread : public IThread
00046     {
00047 
00048       private:
00049 
00055         pthread_t   tPosixId;
00056 
00057 
00058       protected:
00059 
00060         //
00061         //  L O C A L   F U N C T I O N S
00062         //
00063 
00068         static void* _starter (void* pvTHREAD_INSTANCE)
00069         {
00070           ((TThread*) pvTHREAD_INSTANCE)->body();
00071           return NULL;
00072         }
00073 
00074 
00075       protected:
00076 
00077         //
00078         //  C O N S T R U C T O R S
00079         //
00080 
00081         void exit (void)
00082         {
00083           pthread_exit (NULL);
00084         }
00085 
00086         void body (void) = 0;
00087 
00088 
00089       public:
00090 
00091         //
00092         //  C O N S T R U C T O R S
00093         //
00094 
00096         TThread (void) :
00097           IThread  ()  ,
00098           tPosixId (0) {}
00099 
00100         void start (void)
00101         {
00102           if ( pthread_create (&tPosixId, NULL, _starter, this) )
00103           {
00104             throw TErrorException (GetErrorMessage(), __FILE__, __LINE__);
00105           }
00106         }
00107 
00108         void join (void)
00109         {
00110           if ( pthread_join (tPosixId, NULL) )
00111           {
00112             throw TErrorException (GetErrorMessage(), __FILE__, __LINE__);
00113           }
00114         }
00115 
00116     };  // class TThread
00117 
00118   }  // namespace system
00119 
00120 }  // namespace mpcl
00121 
00122 
00123 #endif  // not _MPCL_SYSTEM_POSIX_1_THREAD__

Generated on Mon Oct 13 02:35:24 2003 for MPCL by doxygen1.2.18