summaryrefslogtreecommitdiffabout
path: root/include/sitecing/process_manager.h
authorMichael Krelin <hacker@klever.net>2007-03-04 00:28:39 (UTC)
committer Michael Krelin <hacker@klever.net>2007-03-04 00:28:39 (UTC)
commita3f38aafb288db5791b8dea34154cacc3c039971 (patch) (side-by-side diff)
treeb7f735ef9fde95de5935c1784d8d9486a3e4cf10 /include/sitecing/process_manager.h
parentca2207bcf18ed5b0dd1a0e370e9973d717ff87c9 (diff)
downloadsitecing-a3f38aafb288db5791b8dea34154cacc3c039971.zip
sitecing-a3f38aafb288db5791b8dea34154cacc3c039971.tar.gz
sitecing-a3f38aafb288db5791b8dea34154cacc3c039971.tar.bz2
some doxygen improvements
Diffstat (limited to 'include/sitecing/process_manager.h') (more/less context) (ignore whitespace changes)
-rw-r--r--include/sitecing/process_manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sitecing/process_manager.h b/include/sitecing/process_manager.h
index 73415d3..921f159 100644
--- a/include/sitecing/process_manager.h
+++ b/include/sitecing/process_manager.h
@@ -33,49 +33,49 @@ namespace sitecing {
int max_spare_children;
/**
* The scoreboard.
*/
scoreboard sboard;
/**
* We're in the process of shutting down.
*/
bool finishing;
/**
* @todo TODO: wish I could rememer -- document me.
*/
bool die_humbly;
process_manager();
virtual ~process_manager();
/**
* The main loop.
*/
void manage();
/**
* The worker function.
- * @param the slot allocated for the process.
+ * @param slot the slot allocated for the process.
*/
virtual void process(int slot) = 0;
/**
* @todo TODO: wish I could remember -- document me.
*/
void manage_children();
/**
* @todo TODO: wish I could remember -- document me.
*/
bool spawn_children();
/**
* @todo TODO: wish I could remember -- document me.
*/
bool kill_children();
/**
* @todo TODO: wish I could remember -- document me.
*/
void spawn_child();
/**
* @todo TODO: wish I could remember -- document me.
*/
void wait_for_children(bool hang=false);
/**