当前位置: 首页>>代码示例>>C++>>正文


C++ SharedMemory::add_semaphore方法代码示例

本文整理汇总了C++中SharedMemory::add_semaphore方法的典型用法代码示例。如果您正苦于以下问题:C++ SharedMemory::add_semaphore方法的具体用法?C++ SharedMemory::add_semaphore怎么用?C++ SharedMemory::add_semaphore使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SharedMemory的用法示例。


在下文中一共展示了SharedMemory::add_semaphore方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: signal

int
main(int argc, char **argv)
{
  quit = false;
  signal(SIGINT, signal_handler);

  QASharedMemoryHeader *h1 = new QASharedMemoryHeader(1);

  SharedMemory *sw;

  cout << "Use the locking/locked comments to verify!" << endl;

  try {
    cout << "Creating shared memory segment" << endl;
    // This will create the shared memory segment
    sw = new SharedMemory(MAGIC_TOKEN, h1,
			  /* read only */ false,
			  /* create    */ true,
			  /* destroy   */ true);

    // Add protection via semaphore
    cout << "Adding semaphore set for protection" << endl;
    sw->add_semaphore();

  } catch ( ShmCouldNotAttachException &e ) {
    e.print_trace();
    exit(1);
  }

  pid_t child_pid;


  if ((child_pid = fork()) == 0) {
    // child == reader
    do_child(1, h1);
  } else {
    if ((child_pid = fork()) == 0) {
      // child == reader
      do_child(2, h1);
    } else {
      // father
      cout << "Father (Writer) is alive" << endl;
      int *mf = (int *)sw->memptr();

      while ( ! quit ) {
	int m;
	m = mf[1]; m++;
	usleep(34572);
	WASTETIME;
	mf[1] = m;
	cout << "Father: locking" << endl;
	sw->lock_for_write();
	cout << "Father: locked" << endl;
	m = mf[0]; m++;
	usleep(12953);
	WASTETIME;
	mf[0] = m;
	sw->unlock();
	std::cout << "Father: unprotected: " << mf[1] << " protected: " << mf[0] << endl;
	usleep(3453);
      }

      cout << "Father: Waiting for child to exit" << endl;
      int status;
      waitpid(child_pid, &status, 0);

      delete sw;
      delete h1;
    }
  }
}
开发者ID:fuxiang90,项目名称:fawkes,代码行数:71,代码来源:qa_ipc_shmem_lock.cpp


注:本文中的SharedMemory::add_semaphore方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。