diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-05-25 15:51:34 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-05-25 15:51:34 -0400 |
commit | 855f617bb2b172402fce6c8f3d77ca8b6d749b7f (patch) | |
tree | 28ea41c3d442d3aa4dc8425612390efff9b6615c /gnuradio-runtime/lib/realtime.cc | |
parent | b573271f7740d16ea2f05b8c998d83c1783ece1e (diff) |
runtime: fix use of gr::realtime.
Diffstat (limited to 'gnuradio-runtime/lib/realtime.cc')
-rw-r--r-- | gnuradio-runtime/lib/realtime.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/realtime.cc b/gnuradio-runtime/lib/realtime.cc index e3fea1c6a6..99deff5b52 100644 --- a/gnuradio-runtime/lib/realtime.cc +++ b/gnuradio-runtime/lib/realtime.cc @@ -31,7 +31,7 @@ namespace gr { rt_status_t enable_realtime_scheduling() { - return gr::enable_realtime_scheduling(); + return gr::impl::enable_realtime_scheduling(); } } /* namespace gr */ |