trunk/branch integration: VxWorks & Wince

This commit is contained in:
Marian Krivos 2011-08-23 07:11:45 +00:00
parent 73d3dceb86
commit ccbcadd4ab

View File

@ -50,6 +50,8 @@
#else #else
#include "Poco/Thread_WIN32.h" #include "Poco/Thread_WIN32.h"
#endif #endif
#elif defined(POCO_VXWORKS)
#include "Poco/Thread_VX.h"
#else #else
#include "Poco/Thread_POSIX.h" #include "Poco/Thread_POSIX.h"
#endif #endif
@ -102,13 +104,13 @@ public:
/// Returns the native thread ID of the thread. /// Returns the native thread ID of the thread.
std::string name() const; std::string name() const;
/// Returns the name of the thread. /// Returns the name of the thread.
std::string getName() const; std::string getName() const;
/// Returns teh name of the thread. /// Returns the name of the thread.
void setName(const std::string& name); void setName(const std::string& name);
/// Sets the name of the thread. /// Sets the name of the thread.
void setPriority(Priority prio); void setPriority(Priority prio);
/// Sets the thread's priority. /// Sets the thread's priority.