[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;
};
- [Commit-gnuradio] [gnuradio] 30/50: controlport: ephemeral / unused port number selection by OS working., (continued)
- [Commit-gnuradio] [gnuradio] 30/50: controlport: ephemeral / unused port number selection by OS working., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 13/50: controlport: using threaded server for multiple connections., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 39/50: controlport: documentation cleanup, git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 35/50: controlport: cleanup, git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 33/50: controlport: more cleanup and conveniences, git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 11/50: controlport: more work on the translation layer; properties and setting parameters in gr-ctrlport-monitor now working., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 45/50: controlport: ensure proper ctrlport shutdown., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 08/50: controlport: adding abstraction layer for the controlport backends; support thrift currently., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 25/50: controlport: fixing up some issues; generate thrift sources into thrift subdir., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 16/50: controlport: switching rpcpmtconverter::to_pmt() to To_PMT singleton, git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 40/50: controlport: documentation cleanup,
git <=
- [Commit-gnuradio] [gnuradio] 10/50: controlport: more cleanup of python code to help generalize the interface, git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 38/50: controlport: cleanup, git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 41/50: controlport: cmake fixes to FindThrift for when thrift is not installed., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 43/50: controlport: more documentation and linking info., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 37/50: controlport: Some documentation, git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 32/50: controlport: moving the generation of the Thrift endpoint string to the application_started() function., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 42/50: controlport: QA needs to get host and port out of the endpoint., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 27/50: controlport: cleaning up; trying to handle shutdown better., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 19/50: controlport: simple style editing., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 36/50: controlport: renamed some functions for clairity, git, 2015/04/16