1 /*-
2  * Copyright (c) 1982, 1986, 1989, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * %sccs.include.redist.c%
11  *
12  *	from: @(#)sys_process.c	8.1 (Berkeley) 6/10/93
13  */
14 
15 #include <sys/param.h>
16 #include <sys/proc.h>
17 #include <sys/errno.h>
18 
19 /*
20  * Process debugging system call.
21  */
22 struct ptrace_args {
23 	int	req;
24 	pid_t	pid;
25 	caddr_t	addr;
26 	int	data;
27 };
28 ptrace(a1, a2, a3)
29 	struct proc *a1;
30 	struct ptrace_args *a2;
31 	int *a3;
32 {
33 
34 	/*
35 	 * Body deleted.
36 	 */
37 	return (ENOSYS);
38 }
39 
40 trace_req(a1)
41 	struct proc *a1;
42 {
43 
44 	/*
45 	 * Body deleted.
46 	 */
47 	return (0);
48 }
49