- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我搜索在两个进程之间共享一个结构。但我没有成功。你能帮忙理解吗?
这是我的第一个过程的代码:
#include <boost/interprocess/sync/interprocess_semaphore.hpp>
#include <boost/interprocess/shared_memory_object.hpp>
#include <boost/interprocess/mapped_region.hpp>
#include <boost/interprocess/managed_shared_memory.hpp>
#include <boost/interprocess/containers/vector.hpp>
#include <boost/interprocess/containers/string.hpp>
#include <boost/interprocess/allocators/allocator.hpp>
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <time.h>
#include "semaphore_shared_data.hpp"
using namespace boost::interprocess;
int main(){
shared_memory_object shm(open_or_create, "shared_memory", read_write);
shm.truncate(sizeof(shared_memory_buffer));
mapped_region region(shm,read_write);
void *addr = region.get_address();
shared_memory_buffer *data = new (addr) shared_memory_buffer;
while(true){
data->writer.wait();
std::cout << "Process 1 read: " << data->Variable.Type << ":" <<data->Variable.Value << std::endl;
data->Variable.Type = "ACK";
data->Variable.Value = 1;
sleep(1);
data->reader.post();
}
return 0;
}
这是我的第二个过程的代码:
#include <boost/interprocess/shared_memory_object.hpp>
#include <boost/interprocess/mapped_region.hpp>
#include <boost/interprocess/managed_shared_memory.hpp>
#include <boost/interprocess/containers/vector.hpp>
#include <boost/interprocess/containers/string.hpp>
#include <boost/interprocess/allocators/allocator.hpp>
#include <boost/interprocess/sync/interprocess_semaphore.hpp>
#include <iostream>
#include <math.h>
#include <string>
#include "semaphore_shared_data.hpp"
using namespace boost::interprocess;
int main ()
{
shared_memory_object shm(open_only, "shared_memory",read_write);
mapped_region region(shm,read_write);
void *addr = region.get_address();
shared_memory_buffer *data = static_cast<shared_memory_buffer*>(addr);
while(true)
{
data->reader.wait();
std::cout << "Process 2 read: " << data->Variable.Type << ":" << data->Variable.Value << std::endl;
data->Variable.Type = "ACK";
data->Variable.Value = 2;
data->writer.post();
}
return 0;
}
这是我的 shared_memory_buffer (semaphore_shared_data.hpp) 代码
#include <boost/interprocess/sync/interprocess_semaphore.hpp>
#include <boost/interprocess/managed_shared_memory.hpp>
#include <boost/interprocess/containers/vector.hpp>
#include <boost/interprocess/containers/string.hpp>
#include <boost/interprocess/allocators/allocator.hpp>
#include <string>
using namespace boost::interprocess;
typedef allocator<char, managed_shared_memory::segment_manager> CharAllocator;
typedef basic_string<char, std::char_traits<char>, CharAllocator>shared_string;
struct shared_Struct
{
shared_Struct():Type("ACK"), Value(0){}
shared_string Type;
float Value;
};
struct shared_memory_buffer
{
shared_memory_buffer(): writer(1), reader(0), Variable(){}
interprocess_semaphore writer, reader;
shared_Struct Variable;
};
我有这个错误:
semaphore_shared_data.hpp: In constructor ‘boost::container::basic_string<CharT, Traits, Allocator>::basic_string(const CharT*, const allocator_type&) [with CharT = char; Traits = std::char_traits<char>; Allocator = boost::interprocess::allocator<char, boost::interprocess::segment_manager<char, boost::interprocess::rbtree_best_fit<boost::interprocess::mutex_family>, boost::interprocess::iset_index> >; boost::container::basic_string<CharT, Traits, Allocator>::allocator_type = boost::interprocess::allocator<char, boost::interprocess::segment_manager<char, boost::interprocess::rbtree_best_fit<boost::interprocess::mutex_family>, boost::interprocess::iset_index> >]’:
semaphore_shared_data.hpp:16:38: error: no matching function for call to ‘boost::interprocess::allocator<char, boost::interprocess::segment_manager<char, boost::interprocess::rbtree_best_fit<boost::interprocess::mutex_family>, boost::interprocess::iset_index> >::allocator()’ shared_Struct():Type("ACK"), Value(0){}
最佳答案
我认为我的错误是由于这个声明:
typedef allocator<char, managed_shared_memory::segment_manager> CharAllocator;
typedef basic_string<char, std::char_traits<char>, CharAllocator>shared_string;
gcc 表示:
shared_Struct():Type("ACK"), Value(0){}
关于C++ Boost::Interprocess 共享内存与结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26122973/
有没有人尝试创建进程间通信的日志文件?有人可以就实现这一目标的最佳方式给我一些建议吗? 最佳答案 这个问题不太清楚,评论使它不太清楚,但无论如何...... 首先要尝试的两件事是 ipcs和 stra
我使用boost::interprocess在共享内存中创建了boost::multi_index数据结构。有许多客户端进程将访问此数据结构。访问时,我将锁定数据结构。我遇到的问题是,一旦客户端进程正
我正在尝试使用 this 创建内存映射文件回答,但我收到编译错误。这是我的代码: namespace bi = boost::interprocess; std::string vecFile = "
我正在编写实时数据以增加共享内存。最初我每次想访问 shm 时都使用它: boost::interprocess::managed_shared_memory segment(boost::inte
我正在查看两个进程共享互斥锁和条件变量的 Boost 示例代码: https://www.boost.org/doc/libs/1_57_0/doc/html/interprocess/synchro
我刚刚读了this page Boost.Interprocess 文档。这似乎表明,为了适应不同操作系统之间的差异并达成某种共识,某些进程间机制并没有使用操作系统提供的直接对应的本地机制来实现,而是
我有以下崩溃的代码。我怀疑这是因为分配了对堆栈的引用,所以我遇到了这个问题。但我想避免每次都必须堆栈分配互斥锁和作用域锁的成本 class Cache { public: void cr
在 Boost.Interprocess 文档中 Where is this being allocated?据称 Boost.Interprocess 容器同时使用两种机制放置在共享内存中: Boo
我已经在这个问题上待了好几天(甚至在 boost 论坛上的 posted)并且能够让第二个进程识别锁定的互斥锁似乎不起作用。请帮忙。这是代码: 通用头文件:SharedObject.hpp #ifnd
我正在使用 boost::interprocess::named_upgradable_mutex 来同步一些进程。 我正在使用 boost::interprocess::sharable_lock
我搜索在两个进程之间共享一个结构。但我没有成功。你能帮忙理解吗? 这是我的第一个过程的代码: #include #include #include #include #include #in
我正在移植源代码以打开/读取/写入在多个进程之间共享的文件。它在 Windows 下运行良好,因为它主要使用 boost::interprocess (1.44),我没想到会有太多问题,但我发现了一些
我想我终于掌握了 boost:interprocess 库的基础知识,并且在处理包含一些全是标准数据类型的成员变量的相对简单的类时,我一直在成功地使用它。 但是,我现在面临着将一个相当复杂的类推送到进
现在查看此链接: http://www.boost.org/doc/libs/1_56_0/doc/html/interprocess/quick_guide.html#interprocess.qu
我想用 boost 编写一个简单的应用程序,将字符串对象传递给其他进程。它编译得很好,但是当我尝试从第二个进程打印出字符串时,以下消息被发送到控制台并且第二个进程崩溃: ../boost_1_44_0
目前,我有 2 个进程使用 message_queue 和 shared_memory 表单 boost 进行通信。一切如常。 现在我需要使这个进程中的一个成为多线程的(再次感谢 boost),我想知
我需要围绕一个硬件进行进程间同步。因为此代码需要在 Windows 和 Linux 上运行,所以我使用 Boost 进程间互斥锁进行封装。一切正常接受我检查互斥量放弃的方法。这有可能发生,所以我必须为
这是一段我用来在共享内存上分配映射的代码,我正在使用boost::interprocess和托管共享内存段,现在的问题是我遇到了内存泄漏。下面给出的是最高输出。 最高输出: PID USER
我有一个应用程序实现了 boost named_mutex 以锁定 C++ 项目 (Visual Studio) 中的多个模块。我需要不惜一切代价删除所有 boost 依赖项。 还有其他方法可以实现吗
我似乎遇到了 boost::interprocess::file_lock 的问题 我的流程 1 本质上是 boost::interprocess::file_lock test_lock("
我是一名优秀的程序员,十分优秀!