/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/mmap_notify.h
20 строк
391 B
Dmitry V. Levin
Update copyright headers
16 фев 2021, 11:00
16 фев 2021, 11:00
8fa8a88
Код
Авторство
О чём код?
/* * Copyright (c) 2018-2021 The strace developers. * * SPDX-License-Identifier: LGPL-2.1-or-later */ #ifndef STRACE_MMAP_NOTIFY_H # define STRACE_MMAP_NOTIFY_H # include "defs.h" typedef void (*mmap_notify_fn)(struct tcb *, void *); extern void mmap_notify_register_client(mmap_notify_fn, void *); extern void mmap_notify_report (struct tcb *); #endif /* !STRACE_MMAP_NOTIFY_H */