1*65791Smckusick /*- 2*65791Smckusick * Copyright (c) 1982, 1986, 1989, 1993 3*65791Smckusick * The Regents of the University of California. All rights reserved. 4*65791Smckusick * (c) UNIX System Laboratories, Inc. 5*65791Smckusick * All or some portions of this file are derived from material licensed 6*65791Smckusick * to the University of California by American Telephone and Telegraph 7*65791Smckusick * Co. or Unix System Laboratories, Inc. and are reproduced herein with 8*65791Smckusick * the permission of UNIX System Laboratories, Inc. 949678Smckusick * 1049678Smckusick * %sccs.include.redist.c% 1149678Smckusick * 12*65791Smckusick * from: @(#)sys_process.c 8.1 (Berkeley) 6/10/93 1349678Smckusick */ 1449678Smckusick 15*65791Smckusick #include <sys/param.h> 16*65791Smckusick #include <sys/proc.h> 17*65791Smckusick #include <sys/errno.h> 1849678Smckusick 1949678Smckusick /* 2049678Smckusick * Process debugging system call. 2149678Smckusick */ 22*65791Smckusick struct ptrace_args { 23*65791Smckusick int req; 24*65791Smckusick pid_t pid; 25*65791Smckusick caddr_t addr; 26*65791Smckusick int data; 27*65791Smckusick }; 28*65791Smckusick ptrace(a1, a2, a3) 29*65791Smckusick struct proc *a1; 30*65791Smckusick struct ptrace_args *a2; 31*65791Smckusick int *a3; 3249678Smckusick { 3349678Smckusick 3449678Smckusick /* 3549678Smckusick * Body deleted. 3649678Smckusick */ 3749678Smckusick return (ENOSYS); 3849678Smckusick } 3949678Smckusick 40*65791Smckusick trace_req(a1) 41*65791Smckusick struct proc *a1; 4249678Smckusick { 4349678Smckusick 4449678Smckusick /* 4549678Smckusick * Body deleted. 4649678Smckusick */ 4749678Smckusick return (0); 4849678Smckusick } 49