Move to kernel style SPDX license identifiers
[lttng-ust.git] / libringbuffer / mmap.h
CommitLineData
4d4838ba 1/*
c0c0989a 2 * SPDX-License-Identifier: LGPL-2.1-only
4d4838ba 3 *
c0c0989a 4 * Copyright (C) 2019 Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
4d4838ba
JR
5 */
6
c0c0989a
MJ
7#ifndef _LTTNG_MMAP_H
8#define _LTTNG_MMAP_H
9
4d4838ba
JR
10#include <sys/mman.h>
11
12#if defined(__linux__) && defined(MAP_POPULATE)
13# define LTTNG_MAP_POPULATE MAP_POPULATE
14#else
15# define LTTNG_MAP_POPULATE 0
16#endif /* __linux__ && MAP_POPULATE */
17
18#endif /* _LTTNG_MMAP_H */
This page took 0.023174 seconds and 4 git commands to generate.