Commit 19d7c730 authored by Pavel Vainerman's avatar Pavel Vainerman

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

parent 28b45bc7
......@@ -108,6 +108,11 @@ class ThreadCreator:
PosixThread::setPriority(priority);
}
inline void setPriority( int priority )
{
PosixThread::setPriority(priority);
}
ThreadCreator( ThreadMaster* m, Action a );
~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