(root)/
strace-6.5/
src/
mmap_notify.h
       1  /*
       2   * Copyright (c) 2018-2021 The strace developers.
       3   *
       4   * SPDX-License-Identifier: LGPL-2.1-or-later
       5   */
       6  
       7  #ifndef STRACE_MMAP_NOTIFY_H
       8  # define STRACE_MMAP_NOTIFY_H
       9  
      10  # include "defs.h"
      11  
      12  typedef void (*mmap_notify_fn)(struct tcb *, void *);
      13  
      14  extern void
      15  mmap_notify_register_client(mmap_notify_fn, void *);
      16  
      17  extern void
      18  mmap_notify_report (struct tcb *);
      19  
      20  #endif /* !STRACE_MMAP_NOTIFY_H */