- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最近我got schooled并学习了在 boost::interprocess::managed_shared_memory
段中使用 unordered_map
的正确方法。到目前为止一切顺利,但我需要添加更多的 STL 容器。
理想情况下,我希望能够对任何 STL 容器都遵循相同的做法。现在我需要一个 std::list
.我不能让它工作。我可以做一个std::vector
不过,工作。
以下代码有效:
#include <vector>
#include <boost/interprocess/managed_shared_memory.hpp>
namespace ipc = boost::interprocess;
using Segment = ipc::managed_shared_memory;
using Manager = Segment::segment_manager;
template <typename T> using Alloc = ipc::allocator<T, Manager>;
template <typename K> using Vector = std::vector<K, Alloc<K>>;
int main() {
boost::interprocess::shared_memory_object::remove("test");
Segment _segment{ipc::create_only, "test", 1ul<<40};
Manager *mgr = _segment.get_segment_manager();
Vector<int> *v = _segment.construct<Vector<int>>("v")(mgr);
v->emplace_back(1);
}
列表等效代码会导致错误。
#include <list>
#include <boost/interprocess/managed_shared_memory.hpp>
namespace ipc = boost::interprocess;
using Segment = ipc::managed_shared_memory;
using Manager = Segment::segment_manager;
template <typename T> using Alloc = ipc::allocator<T, Manager>;
template <typename K> using List = std::list<K, Alloc<K>>;
int main() {
boost::interprocess::shared_memory_object::remove("test");
Segment _segment{ipc::create_only, "test", 1ul<<40};
Manager *mgr = _segment.get_segment_manager();
List<int> *v = _segment.construct<List<int>>("v")(mgr);
v->emplace_back(1);
}
编译标志(使用 g++-7)和错误如下:
$ g++ -std=gnu++17 lol_list.cpp -lrt -pthread -rdynamic -Wfatal-errors && ./a.out && rm ./a.out
In file included from /usr/include/c++/7/list:63:0,
from lol_list.cpp:1:
/usr/include/c++/7/bits/stl_list.h: In instantiation of ‘std::__cxx11::list<_Tp, _Alloc>::_Node* std::__cxx11::list<_Tp, _Alloc>::_M_create_node(_Args&& ...) [with _Args = {int}; _Tp = int; _Alloc = boost::interprocess::allocator<int, boost::interprocess::segment_manager<char, boost::interprocess::rbtree_best_fit<boost::interprocess::mutex_family>, boost::interprocess::iset_index> >; std::__cxx11::list<_Tp, _Alloc>::_Node = std::_List_node<int>]’:
/usr/include/c++/7/bits/stl_list.h:1801:32: required from ‘void std::__cxx11::list<_Tp, _Alloc>::_M_insert(std::__cxx11::list<_Tp, _Alloc>::iterator, _Args&& ...) [with _Args = {int}; _Tp = int; _Alloc = boost::interprocess::allocator<int, boost::interprocess::segment_manager<char, boost::interprocess::rbtree_best_fit<boost::interprocess::mutex_family>, boost::interprocess::iset_index> >; std::__cxx11::list<_Tp, _Alloc>::iterator = std::_List_iterator<int>]’
/usr/include/c++/7/bits/stl_list.h:1133:4: required from ‘std::__cxx11::list<_Tp, _Alloc>::reference std::__cxx11::list<_Tp, _Alloc>::emplace_back(_Args&& ...) [with _Args = {int}; _Tp = int; _Alloc = boost::interprocess::allocator<int, boost::interprocess::segment_manager<char, boost::interprocess::rbtree_best_fit<boost::interprocess::mutex_family>, boost::interprocess::iset_index> >; std::__cxx11::list<_Tp, _Alloc>::reference = int&]’
lol_list.cpp:16:20: required from here
/usr/include/c++/7/bits/stl_list.h:578:11: error: cannot convert ‘boost::interprocess::offset_ptr<std::_List_node<int>, long int, long unsigned int, 0>’ to ‘std::__cxx11::list<int, boost::interprocess::allocator<int, boost::interprocess::segment_manager<char, boost::interprocess::rbtree_best_fit<boost::interprocess::mutex_family>, boost::interprocess::iset_index> > >::_Node* {aka std::_List_node<int>*}’ in return
return __p;
^~~
compilation terminated due to -Wfatal-errors.
错误仍然存在于 g++-6
或 g++-8
甚至 clang-6.0
和 clang-5.0
.
最佳答案
并非所有标准库实现都完全支持有状态分配器(还?)。
在这种情况下,您的 std::list<>
似乎没有。只需选择用于 Boost Container 的那个,它也可以通过 Boost Interprocess header 方便地获得:
#include <boost/interprocess/containers/list.hpp>
#include <boost/interprocess/managed_shared_memory.hpp>
namespace ipc = boost::interprocess;
using Segment = ipc::managed_shared_memory;
using Manager = Segment::segment_manager;
template <typename T> using Alloc = ipc::allocator<T, Manager>;
template <typename K> using List = ipc::list<K, Alloc<K>>;
int main() {
boost::interprocess::shared_memory_object::remove("test");
Segment _segment{ipc::create_only, "test", 1ul<<40};
Manager *mgr = _segment.get_segment_manager();
List<int> *v = _segment.construct<List<int>>("v")(mgr);
v->emplace_back(1);
}
关于c++ - std::list 在 boost::interprocess::managed_shared_memory 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51883848/
当我创建一个新的 boost::interprocess::managed_shared_memory 时,我可以看到一个文件出现在 C:\ProgramData\boost_interprocess
我正在研究 boost 库的共享内存部分,为更大的项目做准备。我需要一个共享内存段,在初始化时我不一定知道它的大小,所以我的计划是增加这个段。 我的初始实现有一个存储在共享内存中的 boost::in
我目前正在查看 Boost 的进程间库的文档,并试图找出其中的区别。 据我所知,唯一的区别是持久性(windows 共享内存在最后一个进程退出时被释放,managed_shm 仅在被告知时才被释放),
我正在寻找关于在通过 boost::interprocess 的 managed_shared_memory 创建静态共享内存块时应该分配多少内存的明确答案(如果确实存在的话) 。连official
如何将具有任意名称和任意大小的文件放入 boost::interprocess::managed_shared_memory? 注意,我不是指 boost::interprocess::managed
boost::interprocess::managed_shared_memory manual和 most other我检查的资源总是显示示例,其中有一个父进程和它产生的一堆子进程。 在我的例子中
我有 2 个进程,进程 1 创建一个 boost managed_shared_memory 段,进程 2 打开这个段。然后重新启动进程 1,进程 1 的开始有以下内容, struct vshm_re
我的目标是创建一个名为 SharedMemory 的模板单例类,它可以使用 boost::interprocess::managed_shared_memory 将给定的数据结构存储在共享内存中的映射
我正在使用 boost::interprocess::managed_shared_memory 来创建跨进程共享的内存。 以下是采取的步骤: 步骤 a) Create memory. 步骤 a) O
下面是官方在进程间共享内存中使用vector的例子: http://www.boost.org/doc/libs/1_55_0/doc/html/interprocess/quick_guide.ht
我意识到使用 boost managed_shared_memory 我有一种奇怪的内存泄漏。 在打开或创建共享内存后,一旦超出范围,我的进程持有的内存量不会减少。 这是重现问题的示例: #inclu
我正在使用 boost::interprocess::managed_shared_memory。最初我分配说 X mb 内存。当进程耗尽内存时,我们将内存增加一个固定值(比如 Y mb,执行 unm
在所有 boost 进程间的例子中,我只看到它在 main() 中被初始化。 #include #include using namespace boost::interprocess; int
我创建了一个具有名称和大小的 managed_shared_memory 对象。之后,我想再次获得这个名字。我该怎么做呢?我希望有一个像 get_name 或类似的函数,但我找不到。 #include
这个问题在这里已经有了答案: Is there a better way to check for the existence of a boost shared memory segment? (
我收到以下“第一次机会异常”消息,该消息来 self 编写的 DLL,该 DLL 在我未编写的可执行文件中运行。也就是说,DLL 是一个插件。第一次触发此异常时,尝试打开共享内存映射文件失败。如果我忽
考虑以下情况: class Helper { public: // Getters and setters are present! private:
我有两个程序。 #include #include int main(int argc, char const* argv[]) { boost::interprocess::shared
我是新手。我在以下示例中使用“boost 托管共享内存”,但在以下行的共享段中分配内存时,一个实例崩溃了: char_string key_object(keyHashStr.c_str(), al
boost::interprocess 会像这样创建一个 shm: boost::interprocess::managed_shared_memory segment(boost::interpro
我是一名优秀的程序员,十分优秀!