semaphores_1.cpp

来自「ace开发环境 用来开发网络程序 其运用了设计模式、多平台、C++等多种知识」· C++ 代码 · 共 95 行

CPP
95
字号
// $Id: Semaphores_1.cpp 78634 2007-06-28 14:14:06Z johnnyw $#include "ace/SV_Shared_Memory.h"#include "ace/SV_Semaphore_Simple.h"#include "ace/SV_Semaphore_Complex.h"#include "ace/Shared_Memory_Pool.h"#include "ace/Malloc_T.h"#include "ace/OS_NS_unistd.h"ACE_RCSID (SV_Semaphores,           Semaphores_1,           "$Id: Semaphores_1.cpp 78634 2007-06-28 14:14:06Z johnnyw $")#if defined (ACE_HAS_SYSV_IPC) && !defined(ACE_LACKS_SYSV_SHMEM)// Shared memory allocator (note that this chews up the// ACE_DEFAULT_SEM_KEY).static ACE_Malloc<ACE_SHARED_MEMORY_POOL, ACE_SV_Semaphore_Simple> alloc;const int SEM_KEY = ACE_DEFAULT_SEM_KEY + 1;static intparent (char *shm){  char *s = shm;  ACE_SV_Semaphore_Complex sem (SEM_KEY, ACE_SV_Semaphore_Complex::ACE_CREATE, 0, 2);  for (char c = 'a'; c <= 'z'; c++)    *s++ = c;  *s = '\0';  if (sem.release (0) == -1)    ACE_ERROR ((LM_ERROR, "%p", "parent sem.release(0)"));  else if (sem.acquire (1) == -1)    ACE_ERROR ((LM_ERROR, "%p", "parent sem.acquire(1)"));  if (alloc.remove () == -1)    ACE_ERROR ((LM_ERROR, "%p\n", "alloc.remove"));  if (sem.remove () == -1)    ACE_ERROR ((LM_ERROR, "%p\n", "sem.remove"));  return 0;}static intchild (char *shm){  ACE_SV_Semaphore_Complex sem (SEM_KEY, ACE_SV_Semaphore_Complex::ACE_CREATE, 0, 2);  while (sem.tryacquire (0) == -1)    if (errno == EAGAIN)      ACE_DEBUG ((LM_DEBUG, "spinning in client!\n"));    else      ACE_ERROR_RETURN ((LM_ERROR, "client mutex.tryacquire(0)"), 1);  for (char *s = (char *) shm; *s != '\0'; s++)    ACE_DEBUG ((LM_DEBUG, "%c", *s));  ACE_DEBUG ((LM_DEBUG, "\n"));  if (sem.release (1) < 0)    ACE_ERROR ((LM_ERROR, "client sem.release(1)"));  return 0;}intACE_TMAIN (int, ACE_TCHAR *[]){  char *shm = (char *) alloc.malloc (27);  switch (ACE_OS::fork ())    {    case -1:      ACE_ERROR_RETURN ((LM_ERROR, "fork failed\n"), -1);      /* NOTREACHED */    case 0:      // Child.      return child (shm);    default:      return parent (shm);    }}#elseint ACE_TMAIN (int, ACE_TCHAR *[]){  ACE_ERROR ((LM_ERROR,              "SYSV IPC, or SYSV SHMEM is not supported on this platform\n"));  return 0;}#endif /* ACE_HAS_SYSV_IPC */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?