commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] [gnuradio] 01/02: docs: cleaning up some doxygen warni


From: git
Subject: [Commit-gnuradio] [gnuradio] 01/02: docs: cleaning up some doxygen warnings and formatting.
Date: Fri, 13 Mar 2015 14:07:14 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

trondeau pushed a commit to branch master
in repository gnuradio.

commit 60b85d7a8f7ca142287090b3c53fc01c7c612358
Author: Tom Rondeau <address@hidden>
Date:   Fri Mar 13 09:16:56 2015 -0400

    docs: cleaning up some doxygen warnings and formatting.
---
 gnuradio-runtime/include/gnuradio/basic_block.h |  3 ++-
 gr-zeromq/include/gnuradio/zeromq/pub_sink.h    | 10 ++++++----
 gr-zeromq/include/gnuradio/zeromq/pull_source.h | 11 ++++++-----
 gr-zeromq/include/gnuradio/zeromq/push_sink.h   | 11 ++++++-----
 gr-zeromq/include/gnuradio/zeromq/rep_sink.h    | 11 ++++++-----
 gr-zeromq/include/gnuradio/zeromq/req_source.h  | 12 ++++++------
 gr-zeromq/include/gnuradio/zeromq/sub_source.h  | 11 ++++++-----
 7 files changed, 38 insertions(+), 31 deletions(-)

diff --git a/gnuradio-runtime/include/gnuradio/basic_block.h 
b/gnuradio-runtime/include/gnuradio/basic_block.h
index da07dd9..b687a8f 100644
--- a/gnuradio-runtime/include/gnuradio/basic_block.h
+++ b/gnuradio-runtime/include/gnuradio/basic_block.h
@@ -254,7 +254,8 @@ namespace gr {
     pmt::pmt_t delete_head_nowait( pmt::pmt_t which_port);
 
     /*!
-     * \param[in] millisec Optional timeout value (0=no timeout)
+     * \param[in] which_port The message port from which to get the message.
+     * \param[in] millisec Optional timeout value (0=no timeout).
      * \returns returns pmt at head of queue or pmt::pmt_t() if empty.
      */
     pmt::pmt_t delete_head_blocking(pmt::pmt_t which_port, unsigned int 
millisec = 0);
diff --git a/gr-zeromq/include/gnuradio/zeromq/pub_sink.h 
b/gr-zeromq/include/gnuradio/zeromq/pub_sink.h
index 11f251e..e8871c2 100644
--- a/gr-zeromq/include/gnuradio/zeromq/pub_sink.h
+++ b/gr-zeromq/include/gnuradio/zeromq/pub_sink.h
@@ -48,12 +48,14 @@ namespace gr {
       /*!
        * \brief Return a shared_ptr to a new instance of zeromq::pub_sink.
        *
-       * \param itemsize Size of a stream item in bytes
+       * \param itemsize Size of a stream item in bytes.
        * \param vlen Vector length of the input items. Note that one vector is 
one item.
-       * \param address  ZMQ socket address specifier
-       * \param timeout  Receive timeout in seconds, default is 100ms, 1us 
increments
+       * \param address  ZMQ socket address specifier.
+       * \param timeout  Receive timeout in seconds, default is 100ms, 1us 
increments.
+       * \param pass_tags Whether sink will serialize and pass tags over the 
link.
        */
-      static sptr make(size_t itemsize, size_t vlen, char *address, int 
timeout=100, bool pass_tags=false);
+      static sptr make(size_t itemsize, size_t vlen, char *address,
+                       int timeout=100, bool pass_tags=false);
     };
 
   } // namespace zeromq
diff --git a/gr-zeromq/include/gnuradio/zeromq/pull_source.h 
b/gr-zeromq/include/gnuradio/zeromq/pull_source.h
index 6dec9c2..ca7b407 100644
--- a/gr-zeromq/include/gnuradio/zeromq/pull_source.h
+++ b/gr-zeromq/include/gnuradio/zeromq/pull_source.h
@@ -45,13 +45,14 @@ namespace gr {
       /*!
        * \brief Return a shared_ptr to a new instance of 
gr::zeromq::pull_source.
        *
-       * \param itemsize Size of a stream item in bytes
+       * \param itemsize Size of a stream item in bytes.
        * \param vlen Vector length of the input items. Note that one vector is 
one item.
-       * \param address  ZMQ socket address specifier
-       * \param timeout  Receive timeout in seconds, default is 100ms, 1us 
increments
-       *
+       * \param address  ZMQ socket address specifier.
+       * \param timeout  Receive timeout in seconds, default is 100ms, 1us 
increments.
+       * \param pass_tags Whether source will look for and deserialize tags.
        */
-      static sptr make(size_t itemsize, size_t vlen, char *address, int 
timeout=100, bool pass_tags=false);
+      static sptr make(size_t itemsize, size_t vlen, char *address,
+                       int timeout=100, bool pass_tags=false);
     };
 
   } // namespace zeromq
diff --git a/gr-zeromq/include/gnuradio/zeromq/push_sink.h 
b/gr-zeromq/include/gnuradio/zeromq/push_sink.h
index 1b8999e..0f21b44 100644
--- a/gr-zeromq/include/gnuradio/zeromq/push_sink.h
+++ b/gr-zeromq/include/gnuradio/zeromq/push_sink.h
@@ -49,13 +49,14 @@ namespace gr {
       /*!
        * \brief Return a shared_ptr to a new instance of gr::zeromq::push_sink
        *
-       * \param itemsize Size of a stream item in bytes
+       * \param itemsize Size of a stream item in bytes.
        * \param vlen Vector length of the input items. Note that one vector is 
one item.
-       * \param address  ZMQ socket address specifier
-       * \param timeout  Receive timeout in seconds, default is 100ms, 1us 
increments
-       *
+       * \param address  ZMQ socket address specifier.
+       * \param timeout  Receive timeout in seconds, default is 100ms, 1us 
increments.
+       * \param pass_tags Whether sink will serialize and pass tags over the 
link.
        */
-      static sptr make(size_t itemsize, size_t vlen, char *address, int 
timeout=100, bool pass_tags=false);
+      static sptr make(size_t itemsize, size_t vlen, char *address,
+                       int timeout=100, bool pass_tags=false);
     };
 
   } // namespace zeromq
diff --git a/gr-zeromq/include/gnuradio/zeromq/rep_sink.h 
b/gr-zeromq/include/gnuradio/zeromq/rep_sink.h
index 6d3c47b..33fd38b 100644
--- a/gr-zeromq/include/gnuradio/zeromq/rep_sink.h
+++ b/gr-zeromq/include/gnuradio/zeromq/rep_sink.h
@@ -47,13 +47,14 @@ namespace gr {
       /*!
        * \brief Return a shared_ptr to a new instance of zeromq::rep_sink.
        *
-       * \param itemsize Size of a stream item in bytes
+       * \param itemsize Size of a stream item in bytes.
        * \param vlen Vector length of the input items. Note that one vector is 
one item.
-       * \param address  ZMQ socket address specifier
-       * \param timeout  Receive timeout in seconds, default is 100ms, 1us 
increments
-       *
+       * \param address  ZMQ socket address specifier.
+       * \param timeout  Receive timeout in seconds, default is 100ms, 1us 
increments.
+       * \param pass_tags Whether sink will serialize and pass tags over the 
link.
        */
-      static sptr make(size_t itemsize, size_t vlen, char *address, int 
timeout=100, bool pass_tags=false);
+      static sptr make(size_t itemsize, size_t vlen, char *address,
+                       int timeout=100, bool pass_tags=false);
     };
 
   } // namespace zeromq
diff --git a/gr-zeromq/include/gnuradio/zeromq/req_source.h 
b/gr-zeromq/include/gnuradio/zeromq/req_source.h
index d9f55d3..9936406 100644
--- a/gr-zeromq/include/gnuradio/zeromq/req_source.h
+++ b/gr-zeromq/include/gnuradio/zeromq/req_source.h
@@ -45,14 +45,14 @@ namespace gr {
       /*!
        * \brief Return a shared_ptr to a new instance of zeromq::req_source.
        *
-       *
-       * \param itemsize Size of a stream item in bytes
+       * \param itemsize Size of a stream item in bytes.
        * \param vlen Vector length of the input items. Note that one vector is 
one item.
-       * \param address  ZMQ socket address specifier
-       * \param timeout  Receive timeout in seconds, default is 100ms, 1us 
increments
-       *
+       * \param address  ZMQ socket address specifier.
+       * \param timeout  Receive timeout in seconds, default is 100ms, 1us 
increments.
+       * \param pass_tags Whether source will look for and deserialize tags.
        */
-      static sptr make(size_t itemsize, size_t vlen, char *address, int 
timeout=100, bool pass_tags=false);
+      static sptr make(size_t itemsize, size_t vlen, char *address,
+                       int timeout=100, bool pass_tags=false);
     };
 
   } // namespace zeromq
diff --git a/gr-zeromq/include/gnuradio/zeromq/sub_source.h 
b/gr-zeromq/include/gnuradio/zeromq/sub_source.h
index f97dc5a..5fdd893 100644
--- a/gr-zeromq/include/gnuradio/zeromq/sub_source.h
+++ b/gr-zeromq/include/gnuradio/zeromq/sub_source.h
@@ -45,13 +45,14 @@ namespace gr {
       /*!
        * \brief Return a shared_ptr to a new instance of 
gr::zeromq::sub_source.
        *
-       * \param itemsize Size of a stream item in bytes
+       * \param itemsize Size of a stream item in bytes.
        * \param vlen Vector length of the input items. Note that one vector is 
one item.
-       * \param address  ZMQ socket address specifier
-       * \param timeout  Receive timeout in seconds, default is 100ms, 1us 
increments
-       *
+       * \param address  ZMQ socket address specifier.
+       * \param timeout  Receive timeout in seconds, default is 100ms, 1us 
increments.
+       * \param pass_tags Whether source will look for and deserialize tags.
        */
-      static sptr make(size_t itemsize, size_t vlen, char *address, int 
timeout=100, bool pass_tags=false);
+      static sptr make(size_t itemsize, size_t vlen, char *address,
+                       int timeout=100, bool pass_tags=false);
     };
 
   } // namespace zeromq



reply via email to

[Prev in Thread] Current Thread [Next in Thread]