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

LOW_thread_thread.cpp

Go to the documentation of this file.
00001 /***************************************************************************
00002                           LOW_thread_thread.cpp  -  description
00003                              -------------------
00004     begin                : Mon Sep 29 2003
00005     copyright            : (C) 2003 by Harald Roelle
00006     email                : roelle@informatik.uni-muenchen.de
00007  ***************************************************************************/
00008 
00009 /***************************************************************************
00010  *                                                                         *
00011  *   This program is free software; you can redistribute it and/or modify  *
00012  *   it under the terms of the GNU General Public License as published by  *
00013  *   the Free Software Foundation; either version 2 of the License, or     *
00014  *   (at your option) any later version.                                   *
00015  *                                                                         *
00016  ***************************************************************************/
00017 
00018 
00019 #include "LOW_thread_thread.h"
00020 
00021 
00022 //=====================================================================================
00023 //
00024 // constructors
00025 //
00026 
00027 LOW_thread_thread::~LOW_thread_thread()
00028 {
00029 }
00030 
00031 
00032 //=====================================================================================
00033 //
00034 // methods
00035 //
00036 
00037 bool LOW_thread_thread::getDetachAvialable() const
00038 {
00039   return false;
00040 }
00041 
00042 
00043 void LOW_thread_thread::detach()
00044 {
00045   throw thread_thread_notAvailable( "detach() not implemented", __FILE__, __LINE__);
00046 }
00047 
00048 
00049 bool LOW_thread_thread::getScheduleModifyAvailable() const
00050 {
00051   return false;
00052 }
00053 
00054 
00055 void LOW_thread_thread::setScheduling( const LOW_thread_Factory::schedPolicy_t /*inPolicy*/, const LOW_thread_Factory::schedPrio_t /*inPrio*/)
00056 {
00057   throw thread_thread_notAvailable( "setScheduling() not implemented", __FILE__, __LINE__);
00058 }
00059 
00060   
00061 LOW_thread_Factory::schedPolicy_t LOW_thread_thread::getSchedPolicy() const
00062 {
00063   throw thread_thread_notAvailable( "getSchedPolicy() not implemented", __FILE__, __LINE__);
00064 }
00065 
00066 
00067 LOW_thread_Factory::schedPrio_t LOW_thread_thread::getSchedPrio() const
00068 {
00069   throw thread_thread_notAvailable( "getSchedPrio() not implemented", __FILE__, __LINE__);
00070 }
00071 
00072 
00073 bool LOW_thread_thread::getCancelAttribsAvialable() const
00074 {
00075   return false;
00076 }
00077 
00078 
00079 LOW_thread_Factory::cancelAttrib_t LOW_thread_thread::getCancelAttrib() const
00080 {
00081   throw thread_thread_notAvailable( "getCancelAttrib() not implemented", __FILE__, __LINE__);
00082 }
00083 
00084 
00085 void LOW_thread_thread::setCancelAttrib( const LOW_thread_Factory::cancelAttrib_t /*inCancelAttrib*/)
00086 {
00087   throw thread_thread_notAvailable( "setCancelAttrib() not implemented", __FILE__, __LINE__);
00088 }
00089 

Generated on Tue Feb 3 11:30:26 2004 for OneWireLibrary++ by doxygen 1.3.2