C++中怎么实现共享内存
短信预约 -IT技能 免费直播动态提醒
C++中怎么实现共享内存,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
初次使用C++标准库实现共享内存的管理时,Vector每次分配内存个数不固定,回收也不固定,这样的话,程序还需要继续完善,下面就随本文的讲述来让大家进一步的了解C++中的C++标准库。
内存池管理程序源码如下:
#ifndef MY_ALLOCATOR_H_ #define MY_ALLOCATOR_H_ #include "stdafx.h" #include <limits> #include <iostream> namespace happyever { enum { NODENUMS = 2 }; union _Obj { union _Obj* M_free_list_link; char M_client_data[1]; } ; typedef union _Obj Obj; struct _Cookie { int iShmKey; int iShmID; int iSemKey; int iSemID; int iTotalsize; void* pStartall; char* pStartfree; char* pEndfree; int iUseNum[NODENUMS]; short sFreelistIndex[NODENUMS]; Obj* uFreelist[NODENUMS]; }; typedef struct _Cookie Cookie; //Obj; //Cookie; static Cookie *pHead = NULL; template <class T> class MyAlloc { private: static const int ALIGN = sizeof(Obj); int round_up(int bytes); int freelist_index(int bytes); int freelist_getindex(int bytes); char* chunk_alloc(int size, int *nobjs); void* refill(int num,int n); public: // type definitions typedef T value_type; typedef T* pointer; typedef const T* const_pointer; typedef T& reference; typedef const T& const_reference; typedef std::size_t size_type; typedef std::ptrdiff_t difference_type; template <class U> struct rebind { typedef MyAlloc<U> other; };
以上程序只要稍微修改,就可以实现共享内存的管理,可以方便的使用C++标准库提供的容器。加上信号量的锁机制。以上为了学习而改写的SGI的stl二级分配算法实现的。以上代码存在一定的局限性。
看完上述内容,你们掌握C++中怎么实现共享内存的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注编程网行业资讯频道,感谢各位的阅读!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341