summaryrefslogtreecommitdiff
path: root/gnuradio-runtime
diff options
context:
space:
mode:
Diffstat (limited to 'gnuradio-runtime')
-rw-r--r--gnuradio-runtime/include/gnuradio/block.h6
-rw-r--r--gnuradio-runtime/lib/tpb_thread_body.cc2
2 files changed, 4 insertions, 4 deletions
diff --git a/gnuradio-runtime/include/gnuradio/block.h b/gnuradio-runtime/include/gnuradio/block.h
index c6185d9f2d..21bb52a2d2 100644
--- a/gnuradio-runtime/include/gnuradio/block.h
+++ b/gnuradio-runtime/include/gnuradio/block.h
@@ -169,7 +169,7 @@ namespace gr {
* \brief Called to enable drivers, etc for i/o devices.
*
* This allows a block to enable an associated driver to begin
- * transfering data just before we start to execute the scheduler.
+ * transferring data just before we start to execute the scheduler.
* The end result is that this reduces latency in the pipeline
* when dealing with audio devices, usrps, etc.
*/
@@ -341,7 +341,7 @@ namespace gr {
*
* Use this value to clear the 'is_set' flag so the scheduler will
* ignore this. Use the set_max_noutput_items(m) call to both set
- * a new value for max_noutput_items and to reenable its use in
+ * a new value for max_noutput_items and to re-enable its use in
* the scheduler.
*/
void unset_max_noutput_items();
@@ -409,7 +409,7 @@ namespace gr {
long min_output_buffer(size_t i);
/*!
- * \brief Request limit on the mininum buffer size on all output
+ * \brief Request limit on the minimum buffer size on all output
* ports.
*
* \details
diff --git a/gnuradio-runtime/lib/tpb_thread_body.cc b/gnuradio-runtime/lib/tpb_thread_body.cc
index e3f57eef53..93591feee2 100644
--- a/gnuradio-runtime/lib/tpb_thread_body.cc
+++ b/gnuradio-runtime/lib/tpb_thread_body.cc
@@ -152,7 +152,7 @@ namespace gr {
while(!d->d_tpb.input_changed && block->empty_handled_p()){
boost::system_time const timeout=boost::get_system_time()+ boost::posix_time::milliseconds(250);
if(!d->d_tpb.input_cond.timed_wait(guard, timeout)){
- goto tpb_loop_top; // timeout occured (perform sanity checks up top)
+ goto tpb_loop_top; // timeout occurred (perform sanity checks up top)
}
}