mirror of
https://github.com/pocoproject/poco.git
synced 2025-05-03 07:52:29 +02:00
SF#3503267: VxWorks OS prio is not set in standard constructor
This commit is contained in:
parent
b9f4ce3b08
commit
3d142783c7
@ -56,7 +56,7 @@ namespace Poco {
|
|||||||
class Foundation_API ThreadImpl
|
class Foundation_API ThreadImpl
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef int TIDImpl;
|
typedef int TIDImpl;
|
||||||
typedef void (*Callable)(void*);
|
typedef void (*Callable)(void*);
|
||||||
|
|
||||||
enum Priority
|
enum Priority
|
||||||
@ -88,9 +88,9 @@ public:
|
|||||||
void* pData;
|
void* pData;
|
||||||
};
|
};
|
||||||
|
|
||||||
ThreadImpl();
|
ThreadImpl();
|
||||||
~ThreadImpl();
|
~ThreadImpl();
|
||||||
|
|
||||||
TIDImpl tidImpl() const;
|
TIDImpl tidImpl() const;
|
||||||
void setPriorityImpl(int prio);
|
void setPriorityImpl(int prio);
|
||||||
int getPriorityImpl() const;
|
int getPriorityImpl() const;
|
||||||
@ -124,7 +124,7 @@ protected:
|
|||||||
pCallbackTarget(0),
|
pCallbackTarget(0),
|
||||||
task(0),
|
task(0),
|
||||||
prio(PRIO_NORMAL_IMPL),
|
prio(PRIO_NORMAL_IMPL),
|
||||||
osPrio(0),
|
osPrio(127),
|
||||||
done(false),
|
done(false),
|
||||||
stackSize(POCO_THREAD_STACK_SIZE)
|
stackSize(POCO_THREAD_STACK_SIZE)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user