mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
10 lines
204 B
C
10 lines
204 B
C
![]() |
// SPDX-License-Identifier: GPL-2.0
|
||
|
#include <internal/mmap.h>
|
||
|
|
||
|
void perf_mmap__init(struct perf_mmap *map, bool overwrite)
|
||
|
{
|
||
|
map->fd = -1;
|
||
|
map->overwrite = overwrite;
|
||
|
refcount_set(&map->refcnt, 0);
|
||
|
}
|