diff options
Diffstat (limited to 'gnuradio-core/src/lib/runtime')
-rw-r--r-- | gnuradio-core/src/lib/runtime/Makefile.am | 2 | ||||
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_block.h | 2 | ||||
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_block_detail.h | 2 | ||||
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_buffer.h | 2 | ||||
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_io_signature.h | 2 | ||||
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_runtime_types.h (renamed from gnuradio-core/src/lib/runtime/gr_runtime.h) | 0 | ||||
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_single_threaded_scheduler.h | 2 | ||||
-rw-r--r-- | gnuradio-core/src/lib/runtime/qa_gr_block.cc | 2 | ||||
-rw-r--r-- | gnuradio-core/src/lib/runtime/runtime.i | 2 |
9 files changed, 8 insertions, 8 deletions
diff --git a/gnuradio-core/src/lib/runtime/Makefile.am b/gnuradio-core/src/lib/runtime/Makefile.am index cce4e6f84..2c1ea7eff 100644 --- a/gnuradio-core/src/lib/runtime/Makefile.am +++ b/gnuradio-core/src/lib/runtime/Makefile.am @@ -74,7 +74,7 @@ grinclude_HEADERS = \ gr_pagesize.h \ gr_preferences.h \ gr_realtime.h \ - gr_runtime.h \ + gr_runtime_types.h \ gr_select_handler.h \ gr_single_threaded_scheduler.h \ gr_timer.h \ diff --git a/gnuradio-core/src/lib/runtime/gr_block.h b/gnuradio-core/src/lib/runtime/gr_block.h index 8b234c751..9723be108 100644 --- a/gnuradio-core/src/lib/runtime/gr_block.h +++ b/gnuradio-core/src/lib/runtime/gr_block.h @@ -23,7 +23,7 @@ #ifndef INCLUDED_GR_BLOCK_H #define INCLUDED_GR_BLOCK_H -#include <gr_runtime.h> +#include <gr_runtime_types.h> #include <string> /*! diff --git a/gnuradio-core/src/lib/runtime/gr_block_detail.h b/gnuradio-core/src/lib/runtime/gr_block_detail.h index c3e360cd1..8c4615919 100644 --- a/gnuradio-core/src/lib/runtime/gr_block_detail.h +++ b/gnuradio-core/src/lib/runtime/gr_block_detail.h @@ -23,7 +23,7 @@ #ifndef INCLUDED_GR_BLOCK_DETAIL_H #define INCLUDED_GR_BLOCK_DETAIL_H -#include <gr_runtime.h> +#include <gr_runtime_types.h> #include <stdexcept> /*! diff --git a/gnuradio-core/src/lib/runtime/gr_buffer.h b/gnuradio-core/src/lib/runtime/gr_buffer.h index 506a16616..46017f6ad 100644 --- a/gnuradio-core/src/lib/runtime/gr_buffer.h +++ b/gnuradio-core/src/lib/runtime/gr_buffer.h @@ -23,7 +23,7 @@ #ifndef INCLUDED_GR_BUFFER_H #define INCLUDED_GR_BUFFER_H -#include <gr_runtime.h> +#include <gr_runtime_types.h> class gr_vmcircbuf; diff --git a/gnuradio-core/src/lib/runtime/gr_io_signature.h b/gnuradio-core/src/lib/runtime/gr_io_signature.h index c146193bc..e5e009781 100644 --- a/gnuradio-core/src/lib/runtime/gr_io_signature.h +++ b/gnuradio-core/src/lib/runtime/gr_io_signature.h @@ -23,7 +23,7 @@ #ifndef INCLUDED_IO_SIGNATURE_H #define INCLUDED_IO_SIGNATURE_H -#include <gr_runtime.h> +#include <gr_runtime_types.h> /*! * \brief i/o signature for input and output ports. diff --git a/gnuradio-core/src/lib/runtime/gr_runtime.h b/gnuradio-core/src/lib/runtime/gr_runtime_types.h index 55cbabe18..55cbabe18 100644 --- a/gnuradio-core/src/lib/runtime/gr_runtime.h +++ b/gnuradio-core/src/lib/runtime/gr_runtime_types.h diff --git a/gnuradio-core/src/lib/runtime/gr_single_threaded_scheduler.h b/gnuradio-core/src/lib/runtime/gr_single_threaded_scheduler.h index 304199bf2..5e21d8d08 100644 --- a/gnuradio-core/src/lib/runtime/gr_single_threaded_scheduler.h +++ b/gnuradio-core/src/lib/runtime/gr_single_threaded_scheduler.h @@ -23,7 +23,7 @@ #ifndef INCLUDED_GR_SINGLE_THREADED_SCHEDULER_H #define INCLUDED_GR_SINGLE_THREADED_SCHEDULER_H -#include <gr_runtime.h> +#include <gr_runtime_types.h> #include <fstream> class gr_single_threaded_scheduler; diff --git a/gnuradio-core/src/lib/runtime/qa_gr_block.cc b/gnuradio-core/src/lib/runtime/qa_gr_block.cc index becaf4f29..4773a6eaa 100644 --- a/gnuradio-core/src/lib/runtime/qa_gr_block.cc +++ b/gnuradio-core/src/lib/runtime/qa_gr_block.cc @@ -25,7 +25,7 @@ #endif #include <qa_gr_block.h> #include <gr_block.h> -#include <gr_runtime.h> +#include <gr_runtime_types.h> #include <gr_io_signature.h> #include <gr_null_sink.h> #include <gr_null_source.h> diff --git a/gnuradio-core/src/lib/runtime/runtime.i b/gnuradio-core/src/lib/runtime/runtime.i index 3b08edd00..f2fd36437 100644 --- a/gnuradio-core/src/lib/runtime/runtime.i +++ b/gnuradio-core/src/lib/runtime/runtime.i @@ -21,7 +21,7 @@ */ %{ -#include <gr_runtime.h> +#include <gr_runtime_types.h> #include <gr_io_signature.h> #include <gr_buffer.h> #include <gr_block.h> |