commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] [gnuradio] 40/50: controlport: documentation cleanup


From: git
Subject: [Commit-gnuradio] [gnuradio] 40/50: controlport: documentation cleanup
Date: Wed, 15 Apr 2015 21:07:57 +0000 (UTC)

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

jcorgan pushed a commit to branch master
in repository gnuradio.

commit 8b7b30a10d4934c2023c8b3b37e7eacb5b213bed
Author: Nate Goergen <address@hidden>
Date:   Sun Mar 8 00:53:58 2015 -0600

    controlport: documentation cleanup
---
 .../include/gnuradio/thrift_application_base.h     | 24 +++++++++++-----------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/gnuradio-runtime/include/gnuradio/thrift_application_base.h 
b/gnuradio-runtime/include/gnuradio/thrift_application_base.h
index d682c7b..538f296 100644
--- a/gnuradio-runtime/include/gnuradio/thrift_application_base.h
+++ b/gnuradio-runtime/include/gnuradio/thrift_application_base.h
@@ -59,17 +59,17 @@ public:
 
 /*!
  * \brief Base class for a Thrift application with a singleton with instance
- * function ::i(). Lazy initialization is used to start the Thrift runtime,
- * therefore the Thrift runtime is not started unless ::i() is called at least 
once.
- * This typically means that at least one rpc variable must be registered by
- * a block before the runtime will start.
+ *   function ::i(). Lazy initialization is used to start the Thrift runtime,
+ *   therefore the Thrift runtime is not started unless ::i() is called at 
least once.
+ *   This typically means that at least one rpc variable must be registered by
+ *   a block before the runtime will start.
  *
  * \param TserverBase Template parameter naming the type of the server base,
- * which is typically rpcserverbase.
+ *   which is typically rpcserverbase.
  * \param TserverClass Template parameter naming the eventual type of the
- * the fully derived application.
+ *   the fully derived application.
  * \param _app Reference to the fully derived application instance to be 
returned
- *  by ::i().
+ *    by ::i().
  */
 
 template<typename TserverBase, typename TserverClass>
@@ -95,7 +95,7 @@ public:
 protected:
   /*!
    * \brief Allows this application's booter to set the
-   *endpoint string after the Thrift runtime has initialized.
+   *  endpoint string after the Thrift runtime has initialized.
    *
    * \param[in] endpoint The endpoint string reported by this class.
    */
@@ -106,7 +106,7 @@ protected:
   // Reference to the fully derived application instance.
   static TserverClass* d_application;
 
-  // Reference to the Thrift runtime
+  // Reference to the Thrift runtime;
   std::auto_ptr<apache::thrift::server::TServer> d_thriftserver;
 
   // Max number of attempts when checking the Thrift runtime for
@@ -126,7 +126,7 @@ protected:
 
 private:
 
-  // Function to be called in a seperate thread to invoke the blocking
+  // Function to be called in a separate thread to invoke the blocking
   // ThriftServer::serve() function. Must be specialized for a particular
   // booter implementation, therefore a template implementation is
   // not provided here.
@@ -134,7 +134,7 @@ private:
 
   // Non-blocking function that returns true when the Thrift
   // runtime has finished initialization. Must be implemented
-  // as a specalized template function  for a particular booter
+  // as a specialized template function for a particular booter
   // implementation, therefore template implementation is not
   // provided here.
   bool application_started();
@@ -153,7 +153,7 @@ private:
   gr::thread::mutex d_lock;
 
   // Will be set to true by a the application_started() function,
-  // spealized for a particular booter implementation, once the
+  // specialized for a particular booter implementation, once the
   // thrift runtime has successfully initialized.
   bool d_thirft_is_running;
 };



reply via email to

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