strace/mmap_notify.h
Dmitry V. Levin b93d52fe3d Change the license of strace to LGPL-2.1-or-later
strace is now provided under the terms of the GNU Lesser General
Public License version 2.1 or later, see COPYING for more details.

strace test suite is now provided under the terms of the GNU General
Public License version 2 or later, see tests/COPYING for more details.
2018-12-10 00:00:00 +00:00

21 lines
384 B
C

/*
* Copyright (c) 2018 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 */