summaryrefslogtreecommitdiff
path: root/ACE/examples/Semaphores/starter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Semaphores/starter.cpp')
-rw-r--r--ACE/examples/Semaphores/starter.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/ACE/examples/Semaphores/starter.cpp b/ACE/examples/Semaphores/starter.cpp
deleted file mode 100644
index 5a5d368ccc1..00000000000
--- a/ACE/examples/Semaphores/starter.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-// $Id$
-
-#include "ace/Process_Semaphore.h"
-#include "ace/OS_NS_unistd.h"
-#include "ace/Log_Msg.h"
-
-int ACE_TMAIN (int , ACE_TCHAR *[])
-{
- // Create locked
- ACE_Process_Semaphore s (0, ACE_TEXT("AceTest"));
-
- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Starter has created and acquired semaphore\n")));
-
- // Do some init stuff. Simulated by a sleep...
- ACE_OS::sleep(10);
-
- s.release();
-
- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Starter has released semaphore\n")));
-
- return 0;
-}