blob: 8431e87ac33338eed5d037fe07259558c9b5ee23 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
2 * Copyright (C) 2007 Jeff Dike (jdike@{addtoit.com,linux.intel.com})
3 * Licensed under the GPL
4 */
5
6#include <sys/ptrace.h>
7#include <asm/ptrace.h>
8
9int os_arch_prctl(int pid, int option, unsigned long *arg2)
10{
11 return ptrace(PTRACE_ARCH_PRCTL, pid, (unsigned long) arg2, option);
12}