Commit 32093382 authored by Pavel Vainerman's avatar Pavel Vainerman

Сделал доступной функцию setPriority в классе ThreadCreator

parent dad4f5e8
...@@ -103,6 +103,11 @@ class ThreadCreator: ...@@ -103,6 +103,11 @@ class ThreadCreator:
PosixThread::thrkill(signo); PosixThread::thrkill(signo);
} }
inline void setPriority( int priority )
{
PosixThread::setPriority(priority);
}
ThreadCreator( ThreadMaster* m, Action a ); ThreadCreator( ThreadMaster* m, Action a );
~ThreadCreator(); ~ThreadCreator();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment