blob: 96eb2bd288320b28e1ff6278bd0d410f1536ceab [file] [log] [blame]
Jeff Dikef3555592007-02-10 01:44:29 -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>
Richard Weinbergerb5c04da2013-08-23 13:37:49 +02007#include <asm/ptrace.h>
Jeff Dikef3555592007-02-10 01:44:29 -08008
9int os_arch_prctl(int pid, int code, unsigned long *addr)
10{
11 return ptrace(PTRACE_ARCH_PRCTL, pid, (unsigned long) addr, code);
12}