首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >增强ipc新操作符和删除操作符

增强ipc新操作符和删除操作符
EN

Stack Overflow用户
提问于 2015-02-11 13:01:14
回答 1查看 240关注 0票数 0

我在boost ipc (进程间通信)中看到一个示例

代码语言:javascript
复制
#include <boost/interprocess/shared_memory_object.hpp>
#include <boost/interprocess/mapped_region.hpp>
#include <boost/interprocess/sync/scoped_lock.hpp>
#include <iostream>
#include <cstdio>
#include "doc_anonymous_condition_shared_data.hpp"

using namespace boost::interprocess;

int main ()
{

   //Erase previous shared memory and schedule erasure on exit
   struct shm_remove
   {
      shm_remove() { shared_memory_object::remove("MySharedMemory"); }
      ~shm_remove(){ shared_memory_object::remove("MySharedMemory"); }
   } remover;

   //Create a shared memory object.
   shared_memory_object shm
      (create_only               //only create
      ,"MySharedMemory"           //name
      ,read_write                //read-write mode
      );
   try{
      //Set size
      shm.truncate(sizeof(trace_queue));

      //Map the whole shared memory in this process
      mapped_region region
         (shm                       //What to map
         ,read_write //Map it as read-write
         );

      //Get the address of the mapped region
      void * addr       = region.get_address();

      //Construct the shared structure in memory
      trace_queue * data = new (addr) trace_queue;

      const int NumMsg = 100;

      for(int i = 0; i < NumMsg; ++i){
         scoped_lock<interprocess_mutex> lock(data->mutex);
         if(data->message_in){
            data->cond_full.wait(lock);
         }
         if(i == (NumMsg-1))
            std::sprintf(data->items, "%s", "last message");
         else
            std::sprintf(data->items, "%s_%d", "my_trace", i);

         //Notify to the other process that there is a message
         data->cond_empty.notify_one();

         //Mark message buffer as full
         data->message_in = true;
      }
   }
   catch(interprocess_exception &ex){
      std::cout << ex.what() << std::endl;
      return 1;
   }

   return 0;
}

该示例中没有delete运算符。可能是在内存区域使用的新操作符,它不能与delete运算符一起使用。如果需要调用析构函数,只需直接调用:

代码语言:javascript
复制
data->~trace_queue();

我说的对吗?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2015-02-11 18:26:24

是的,正如约阿希姆所说,你是对的。

然而,我建议使用managed_shared_memory,它具有find<T>find_or_construct<T>construct<T>,以使您的生活更轻松。

如果需要存储相同类型的多个对象,请考虑使用该类型的std::vector (或boost::container::vector)和boost::interprocess::allocator

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/28455041

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档