00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include "LOW_thread_thread.h"
00020
00021
00022
00023
00024
00025
00026
00027 LOW_thread_thread::~LOW_thread_thread()
00028 {
00029 }
00030
00031
00032
00033
00034
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 , const LOW_thread_Factory::schedPrio_t )
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 )
00086 {
00087 throw thread_thread_notAvailable( "setCancelAttrib() not implemented", __FILE__, __LINE__);
00088 }
00089