Go to the documentation of this file.00001
00008
00009
00010
00011
00012 #ifndef ECL_THREADS_PRIORITY_COMMON_HPP_
00013 #define ECL_THREADS_PRIORITY_COMMON_HPP_
00014
00015
00016
00017
00018
00019 namespace ecl {
00020
00021
00022
00023
00024
00032 enum Priority {
00033 DefaultPriority = 0,
00034 UnknownPriority,
00035 BackgroundPriority,
00036 LowPriority,
00037 NormalPriority,
00038 HighPriority,
00039 CriticalPriority,
00040 RealTimePriority1,
00041 RealTimePriority2,
00042 RealTimePriority3,
00043 RealTimePriority4,
00044 };
00045
00046
00047 }
00048
00049 #endif