summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Concurrency/Concurrency_Utils.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-05-07 00:21:39 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-05-07 00:21:39 +0000
commita19868f856558a2703866a545a4b521bb0ba1c26 (patch)
tree4a0ff8bc6f99ee288ef39f3d9bdfdd99d95fa391 /TAO/orbsvcs/orbsvcs/Concurrency/Concurrency_Utils.h
parent1fd7cdbea7518146c344ffd2e55dd5289c39ca4c (diff)
downloadATCD-a19868f856558a2703866a545a4b521bb0ba1c26.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Concurrency/Concurrency_Utils.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Concurrency/Concurrency_Utils.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Concurrency/Concurrency_Utils.h b/TAO/orbsvcs/orbsvcs/Concurrency/Concurrency_Utils.h
index 5f2599a078e..06d5947e4cc 100644
--- a/TAO/orbsvcs/orbsvcs/Concurrency/Concurrency_Utils.h
+++ b/TAO/orbsvcs/orbsvcs/Concurrency/Concurrency_Utils.h
@@ -10,10 +10,10 @@
// Concurrency_Utils.h
//
// = DESCRIPTION
-// This class implements a Concurrency Server wrapper class which holds
-// a number of lock sets
-// The server must run in the thread per request concurrency model in
-// order to let the clients block on the semaphores.
+// This class implements a Concurrency Server wrapper class which
+// holds a number of lock sets. The server must run in the
+// thread per request concurrency model in order to let the
+// clients block on the semaphores.
//
// = AUTHORS
// Torben Worm <tworm@cs.wustl.edu>
@@ -34,11 +34,9 @@ class TAO_ORBSVCS_Export TAO_Concurrency_Server
// concurrency server.
//
// = DESCRIPTION
- //
- //
- //
- //
+ // @@ Torben, please fill in here...
public:
+ // = Initialization and termination methods.
TAO_Concurrency_Server (void);
//Default constructor.
@@ -47,18 +45,19 @@ public:
// Takes the POA under which to register the Concurrency Service
// implementation object.
+ ~TAO_Concurrency_Server (void);
+ // Destructor.
+
int init (CORBA::ORB_var &orb,
PortableServer::POA_var &poa);
// Initialize the concurrency server under the given ORB and POA.
CC_LockSetFactory *GetLockSetFactory(void);
- // Get the lock set factory
-
- ~TAO_Concurrency_Server (void);
- // Destructor.
+ // Get the lock set factory.
private:
CC_LockSetFactory lock_set_factory_;
+ // @@ Torben, please comment this.
};
#endif /* _CONCURRENCY_SERVER_H */