summaryrefslogtreecommitdiff
path: root/ACE/ace/Process_Semaphore.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-10-02 17:29:05 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-10-02 17:29:05 +0000
commite91577bca0483d85ef023a041fc95c9362c7a638 (patch)
tree64596e89fe88b295568485b641ece20ff2ef9594 /ACE/ace/Process_Semaphore.h
parent6249290fa983e204625fbd5b52a7a3c68ff8976c (diff)
downloadATCD-e91577bca0483d85ef023a041fc95c9362c7a638.tar.gz
Tue Oct 2 17:06:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Process_Semaphore.h')
-rw-r--r--ACE/ace/Process_Semaphore.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/ACE/ace/Process_Semaphore.h b/ACE/ace/Process_Semaphore.h
index 1b95d497445..61665207d82 100644
--- a/ACE/ace/Process_Semaphore.h
+++ b/ACE/ace/Process_Semaphore.h
@@ -49,13 +49,6 @@ public:
int max = 0x7FFFFFFF);
/**
- * This method is a no-op, i.e., it doesn't remove the semaphore.
- * If you want to remove the semaphore, you must call the <remove>
- * method explicitly.
- */
- // ~ACE_Process_Semaphore (void);
-
- /**
* Explicitly destroy the semaphore. Note that only one thread
* should call this method since it doesn't protect against race
* conditions.
@@ -79,21 +72,21 @@ public:
/**
* Acquire semaphore ownership. This calls <acquire> and is only
- * here to make the <ACE_Process_Semaphore> interface consistent
+ * here to make the ACE_Process_Semaphore interface consistent
* with the other synchronization APIs.
*/
int acquire_read (void);
/**
* Acquire semaphore ownership. This calls <acquire> and is only
- * here to make the <ACE_Process_Semaphore> interface consistent
+ * here to make the ACE_Process_Semaphore interface consistent
* with the other synchronization APIs.
*/
int acquire_write (void);
/**
* Conditionally acquire semaphore (i.e., won't block). This calls
- * <tryacquire> and is only here to make the <ACE_Process_Semaphore>
+ * <tryacquire> and is only here to make the ACE_Process_Semaphore
* interface consistent with the other synchronization APIs.
* Returns -1 on failure. If we "failed" because someone else
* already had the lock, @c errno is set to @c EBUSY.