diff options
Diffstat (limited to 'gnuradio-runtime/lib/thread')
-rw-r--r-- | gnuradio-runtime/lib/thread/thread.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/lib/thread/thread.cc b/gnuradio-runtime/lib/thread/thread.cc index 85240cbee1..15d433d62d 100644 --- a/gnuradio-runtime/lib/thread/thread.cc +++ b/gnuradio-runtime/lib/thread/thread.cc @@ -218,10 +218,10 @@ void set_thread_name(gr_thread_t thread, std::string name) #else -#include <sstream> -#include <stdexcept> #include <pthread.h> #include <sys/prctl.h> +#include <sstream> +#include <stdexcept> namespace gr { namespace thread { |