Template specialization of ACE_Malloc_Lock_Adapter_T for ACE_Process_Semaphore. More...
#include <Process_Semaphore.h>
Public Member Functions | |
| ACE_Process_Semaphore * | operator() (const ACE_TCHAR *name) |
Template specialization of ACE_Malloc_Lock_Adapter_T for ACE_Process_Semaphore.
This is needed since the ctor for ACE_Process_Semaphore doesn't match the standard form used by other lock strategy classes.
Definition at line 145 of file Process_Semaphore.h.
| ACE_Process_Semaphore * ACE_Malloc_Lock_Adapter_T< ACE_Process_Semaphore >::operator() | ( | const ACE_TCHAR * | name | ) |
Definition at line 99 of file Process_Semaphore.cpp.
00100 { 00101 ACE_Process_Semaphore *p = 0; 00102 if (name == 0) 00103 ACE_NEW_RETURN (p, ACE_Process_Semaphore (1, name), 0); 00104 else 00105 ACE_NEW_RETURN (p, ACE_Process_Semaphore (1, ACE::basename (name, 00106 ACE_DIRECTORY_SEPARATOR_CHAR)), 00107 0); 00108 return p; 00109 }
1.6.1