(root)/
strace-6.5/
src/
linux/
generic/
ptrace_pokeuser.c
       1  /*
       2   * Copyright (c) 2018-2021 The strace developers.
       3   * All rights reserved.
       4   *
       5   * SPDX-License-Identifier: LGPL-2.1-or-later
       6   */
       7  
       8  static long
       9  ptrace_pokeuser(int pid, unsigned long off, kernel_ulong_t val)
      10  {
      11  	return ptrace(PTRACE_POKEUSER, pid, off, val);
      12  }