From 069dabd73ff66ad93223bbeec2c157c37eb0a8fc Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Sun, 23 Jan 2011 23:37:18 -0800 Subject: qtgui use gruel thread mutex: Replace pthread mutex usage with gruel thread mutex to make the code portable on systems without pthreads. --- gr-qtgui/src/lib/qtgui_sink_f.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gr-qtgui/src/lib/qtgui_sink_f.h') diff --git a/gr-qtgui/src/lib/qtgui_sink_f.h b/gr-qtgui/src/lib/qtgui_sink_f.h index 0cac35d90..d80a6a198 100644 --- a/gr-qtgui/src/lib/qtgui_sink_f.h +++ b/gr-qtgui/src/lib/qtgui_sink_f.h @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2008,2009 Free Software Foundation, Inc. + * Copyright 2008,2009,2011 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -74,7 +74,7 @@ private: double d_bandwidth; std::string d_name; - pthread_mutex_t d_pmutex; + gruel::mutex d_mutex; bool d_shift; gri_fft_complex *d_fft; -- cgit