溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C++中怎么實現(xiàn)共享內(nèi)存

發(fā)布時間:2021-07-23 16:35:38 來源:億速云 閱讀:206 作者:Leah 欄目:編程語言

C++中怎么實現(xiàn)共享內(nèi)存,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

初次使用C++標(biāo)準(zhǔn)庫實現(xiàn)共享內(nèi)存的管理時,Vector每次分配內(nèi)存?zhèn)€數(shù)不固定,回收也不固定,這樣的話,程序還需要繼續(xù)完善,下面就隨本文的講述來讓大家進一步的了解C++中的C++標(biāo)準(zhǔn)庫。

內(nèi)存池管理程序源碼如下:

#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;        /* 共享內(nèi)存鍵值 */       int iShmID;         /* iShmKey對應(yīng)的shmid */       int iSemKey;        /* 鎖信號鍵值 */       int iSemID;         /* 鎖信號標(biāo)識 */       int iTotalsize;    /* 容器總?cè)萘?nbsp;*/       void* pStartall;   /* 共享內(nèi)存自身地址 */       char* pStartfree;  /* 自由空間的開始地址*/       char* pEndfree;    /* 自由空間的結(jié)束地址*/       int iUseNum[NODENUMS];       /*用來存放free_list中節(jié)點的size*/       short sFreelistIndex[NODENUMS];       /*存放分配內(nèi)存節(jié)點的鏈表*/       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;       };

以上程序只要稍微修改,就可以實現(xiàn)共享內(nèi)存的管理,可以方便的使用C++標(biāo)準(zhǔn)庫提供的容器。加上信號量的鎖機制。以上為了學(xué)習(xí)而改寫的SGI的stl二級分配算法實現(xiàn)的。以上代碼存在一定的局限性。

看完上述內(nèi)容,你們掌握C++中怎么實現(xiàn)共享內(nèi)存的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

c++
AI