file.cpp
来自「ACE自适配通信环境(ADAPTIVE Communication Enviro」· C++ 代码 · 共 69 行
CPP
69 行
// FILE.cpp,v 1.2 2003/11/01 11:15:22 dhinton Exp#include "ace/Guard_T.h"#include "JAWS/FILE.h"JAWS_FILE::JAWS_FILE (void) : map_ (0){}JAWS_FILE::~JAWS_FILE (void){ delete this->map_; this->map_ = 0;}ACE_Mem_Map *JAWS_FILE::mem_map (int length, int prot, int share, void *addr, off_t offset, LPSECURITY_ATTRIBUTES sa) const{ JAWS_FILE *mutable_this = (JAWS_FILE *) this; return mutable_this->mem_map (length, prot, share, addr, offset, sa);}ACE_Mem_Map *JAWS_FILE::mem_map (int length, int prot, int share, void *addr, off_t offset, LPSECURITY_ATTRIBUTES sa){ if (this->map_ == 0) { ACE_Guard<ACE_SYNCH_MUTEX> g (this->lock_); if (this->map_ == 0) { this->map_ = new ACE_Mem_Map; if (this->map_ != 0) { int r = this->map_->map (this->get_handle (), length, prot, share, addr, offset, sa); if (r < 0) { delete this->map_; this->map_ = 0; } } } } return this->map_;}ACE_Mem_Map *JAWS_FILE::map (void) const{ return this->map_;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?