blob: 265d8ff8d46f8f16f5eec59ce8104de29be27a51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* Copyright (c) 2013 Stanislaw Halik <sthalik@misaki.pl>
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*/
#define BUILD_SHM
#include "shm.hpp"
SHMXX_TYPE_NAME& SHMXX_TYPE_NAME::operator=(SHMXX_TYPE_NAME&&) noexcept = default;
// NOLINTNEXTLINE(cppcoreguidelines-pro-type-member-init)
SHMXX_TYPE_NAME::SHMXX_TYPE_NAME(const char* shm_name, const char* mutex_name, int map_size)
{
SHM_FUN_NAME(init)(&impl, shm_name, mutex_name, map_size);
}
SHMXX_TYPE_NAME::~SHMXX_TYPE_NAME()
{
SHM_FUN_NAME(free)(&impl);
}
bool SHMXX_TYPE_NAME::success() noexcept
{
return SHM_FUN_NAME(success)(&impl);
}
void SHMXX_TYPE_NAME::lock() noexcept
{
SHM_FUN_NAME(lock)(&impl);
}
void SHMXX_TYPE_NAME::unlock() noexcept
{
SHM_FUN_NAME(unlock)(&impl);
}
void* SHMXX_TYPE_NAME::ptr() noexcept
{
return SHM_FUN_NAME(ptr)(&impl);
}
|