Commit e946b0d1 authored by hitstergtd's avatar hitstergtd

Problem: scheduling parameters unused on OSX

Solution:
Mark them with LIBZMQ_UNUSED macro as per convention; although in future the
appropriate pthread code should be updated to support thread scheduling
priorities (for Mac OS X, et. al.)
parent dc729653
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
*/ */
#include "precompiled.hpp" #include "precompiled.hpp"
#include "macros.hpp"
#include "thread.hpp" #include "thread.hpp"
#include "err.hpp" #include "err.hpp"
#include "platform.hpp" #include "platform.hpp"
...@@ -73,6 +74,8 @@ void zmq::thread_t::stop () ...@@ -73,6 +74,8 @@ void zmq::thread_t::stop ()
void zmq::thread_t::setSchedulingParameters(int priority_, int schedulingPolicy_) void zmq::thread_t::setSchedulingParameters(int priority_, int schedulingPolicy_)
{ {
// not implemented // not implemented
LIBZMQ_UNUSED (priority_);
LIBZMQ_UNUSED (schedulingPolicy_);
} }
#else #else
...@@ -144,12 +147,11 @@ void zmq::thread_t::setSchedulingParameters(int priority_, int schedulingPolicy_ ...@@ -144,12 +147,11 @@ void zmq::thread_t::setSchedulingParameters(int priority_, int schedulingPolicy_
rc = pthread_setschedparam(descriptor, policy, &param); rc = pthread_setschedparam(descriptor, policy, &param);
posix_assert (rc); posix_assert (rc);
#else
LIBZMQ_UNUSED (priority_);
LIBZMQ_UNUSED (schedulingPolicy_);
#endif #endif
} }
#endif #endif
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