| 4030 | |
| 4031 | #ifdef USE_SHMEM_EXT |
| 4032 | void LockManager::Extent::assign(const SharedMemoryBase& p) |
| 4033 | { |
| 4034 | SharedMemoryBase* me = this; |
| 4035 | |
| 4036 | me->setHeader(p.getHeader()); |
| 4037 | me->sh_mem_mutex = p.sh_mem_mutex; |
| 4038 | me->sh_mem_length_mapped = p.sh_mem_length_mapped; |
| 4039 | me->sh_mem_handle = p.sh_mem_handle; |
| 4040 | strcpy(me->sh_mem_name, p.sh_mem_name); |
| 4041 | } |
| 4042 | #endif // USE_SHMEM_EXT |
| 4043 | |
| 4044 | } // namespace |
no test coverage detected