summaryrefslogtreecommitdiff
path: root/ace/Service_Config.h
diff options
context:
space:
mode:
authorChris Cleeland <chris.cleeland@gmail.com>1997-08-08 16:37:43 +0000
committerChris Cleeland <chris.cleeland@gmail.com>1997-08-08 16:37:43 +0000
commitd2045082c011b9463399c46671bf3934e3ea6d03 (patch)
treed40fa311ac3d093197010aeb493451f497e4849f /ace/Service_Config.h
parentf799b30b4c58afd48db841bbef84a06724c8296d (diff)
downloadATCD-d2045082c011b9463399c46671bf3934e3ea6d03.tar.gz
documentation updates
Diffstat (limited to 'ace/Service_Config.h')
-rw-r--r--ace/Service_Config.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/ace/Service_Config.h b/ace/Service_Config.h
index 806bb5b87f3..9f6a1a7acb6 100644
--- a/ace/Service_Config.h
+++ b/ace/Service_Config.h
@@ -89,11 +89,13 @@ public:
static int open (const char program_name[]);
// Performs an open without parsing command-line arguments.
+ // @@ What is its return value?
static int open (int argc, char *argv[]);
// This is the primary entry point into the ACE_Service_Config (the
// constructor just handles simple initializations). It parses
// arguments passed in from the command-line.
+ // @@ What is its return value?
virtual ~ACE_Service_Config (void);
// Perform user-specified close activities and remove dynamic
@@ -102,15 +104,18 @@ public:
static int close (void);
// Tidy up and perform last rites when ACE_Service_Config is shut
// down. This method calls <close_svcs> and <close_singletons>.
+ // @@ What is its return value?
static int close_svcs (void);
// Perform user-specified close hooks on all of the configured
// services in the <Service_Repository>, then delete the
// <Service_Repository> itself.
+ // @@ What is its return value?
static int close_singletons (void);
// Delete the dynamically allocated Singletons (i.e., the <Reactor>,
// <Proactor>, <ReactorEx>, <Thread_Manager>, and <Allocator>).
+ // @@ What is its return value?
// = Reactor event loop management methods.
static int run_reactor_event_loop (void);