x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
managed_shared_memory.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\interprocess\managed_shared_memory.hpp
旋转
特效
属性
历史版本
////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2005-2008. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/interprocess for documentation. // ////////////////////////////////////////////////////////////////////////////// #ifndef BOOST_INTERPROCESS_MANAGED_SHARED_MEMORY_HPP #define BOOST_INTERPROCESS_MANAGED_SHARED_MEMORY_HPP #if (defined _MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif #include
#include
#include
#include
#include
#include
//!\file //!Describes a named shared memory object allocation user class. namespace boost { namespace interprocess { //!A basic shared memory named object creation class. Initializes the //!shared memory segment. Inherits all basic functionality from //!basic_managed_memory_impl
*/ template < class CharType, class AllocationAlgorithm, template
class IndexType > class basic_managed_shared_memory : public detail::basic_managed_memory_impl
::ManagedOpenOrCreateUserOffset> , private detail::managed_open_or_create_impl
{ /// @cond public: typedef shared_memory_object device_type; private: typedef detail::basic_managed_memory_impl
::ManagedOpenOrCreateUserOffset> base_t; typedef detail::managed_open_or_create_impl
base2_t; typedef detail::create_open_func
create_open_func_t; basic_managed_shared_memory(); basic_managed_shared_memory *get_this_pointer() { return this; } /// @endcond public: //functions //!Destroys *this and indicates that the calling process is finished using //!the resource. The destructor function will deallocate //!any system resources allocated by the system for use by this process for //!this resource. The resource can still be opened again calling //!the open constructor overload. To erase the resource from the system //!use remove(). ~basic_managed_shared_memory() {} //!Creates shared memory and creates and places the segment manager. //!This can throw. basic_managed_shared_memory(create_only_t create_only, const char *name, std::size_t size, const void *addr = 0) : base_t() , base2_t(create_only, name, size, read_write, addr, create_open_func_t(get_this_pointer(), detail::DoCreate)) {} //!Creates shared memory and creates and places the segment manager if //!segment was not created. If segment was created it connects to the //!segment. //!This can throw. basic_managed_shared_memory (open_or_create_t open_or_create, const char *name, std::size_t size, const void *addr = 0) : base_t() , base2_t(open_or_create, name, size, read_write, addr, create_open_func_t(get_this_pointer(), detail::DoOpenOrCreate)) {} //!Connects to a created shared memory and it's the segment manager. //!Never throws. basic_managed_shared_memory (open_only_t open_only, const char* name, const void *addr = 0) : base_t() , base2_t(open_only, name, read_write, addr, create_open_func_t(get_this_pointer(), detail::DoOpen)) {} //!Moves the ownership of "moved"'s managed memory to *this. //!Does not throw #ifndef BOOST_INTERPROCESS_RVALUE_REFERENCE basic_managed_shared_memory (detail::moved_object
&moved) { this->swap(moved.get()); } #else basic_managed_shared_memory(basic_managed_shared_memory &&moved) { this->swap(moved); } #endif //!Moves the ownership of "moved"'s managed memory to *this. //!Does not throw #ifndef BOOST_INTERPROCESS_RVALUE_REFERENCE basic_managed_shared_memory &operator= (detail::moved_object
&moved) { this->swap(moved.get()); return *this; } #else basic_managed_shared_memory &operator=(basic_managed_shared_memory &&moved) { this->swap(moved); return *this; } #endif //!Swaps the ownership of the managed shared memories managed by *this and other. //!Never throws. void swap(basic_managed_shared_memory &other) { base_t::swap(other); base2_t::swap(other); } //!Tries to resize the managed shared memory object so that we have //!room for more objects. //! //!This function is not synchronized so no other thread or process should //!be reading or writing the file static bool grow(const char *filename, std::size_t extra_bytes) { return base_t::template grow
(filename, extra_bytes); } //!Tries to resize the managed shared memory to minimized the size of the file. //! //!This function is not synchronized so no other thread or process should //!be reading or writing the file static bool shrink_to_fit(const char *filename) { return base_t::template shrink_to_fit
(filename); } }; } //namespace interprocess { } //namespace boost { #include
#endif //BOOST_INTERPROCESS_MANAGED_SHARED_MEMORY_HPP
managed_shared_memory.hpp
网页地址
文件地址
上一页
9/15
下一页
下载
( 6 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.