Groonga
Loading...
Searching...
No Matches
memory_map.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2025 Sutou Kouhei <kou@clear-code.com>
3
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
8
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with this library; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17*/
18
19#pragma once
20
21#include <stdint.h>
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
28typedef uint32_t grn_memory_map_flags;
29
30#define GRN_MEMORY_MAP_READ (1 << 0)
31#define GRN_MEMORY_MAP_WRITE (1 << 1)
32#define GRN_MEMORY_MAP_EXCLUDE (1 << 2)
33
36 const char *path,
38 uint64_t offset,
39 size_t length);
40GRN_API void *
42GRN_API void
44
45#ifdef __cplusplus
46}
47#endif
#define GRN_API
Definition groonga.h:39
GRN_API grn_memory_map * grn_memory_map_open(grn_ctx *ctx, const char *path, grn_memory_map_flags flags, uint64_t offset, size_t length)
GRN_API void grn_memory_map_close(grn_ctx *ctx, grn_memory_map *map)
struct grn_memory_map grn_memory_map
Definition memory_map.h:27
GRN_API void * grn_memory_map_get_address(grn_ctx *ctx, grn_memory_map *map)
uint32_t grn_memory_map_flags
Definition memory_map.h:28
Definition groonga.h:351