diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-03-28 11:52:06 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-03-28 11:52:06 +0000 |
commit | 0b506ba8223dc467b4081de670935c756fe85509 (patch) | |
tree | 352a6f5897ac5e43123cb0446d513a67f3e50403 /sys/dev/systrace.h | |
parent | 4130975219e10faec3ba07febcef657f44181bab (diff) |
fake off the SYSTR_CLONE through a normally numbered other ioctl; as of previous rename; after discussion w/ niels
Diffstat (limited to 'sys/dev/systrace.h')
-rw-r--r-- | sys/dev/systrace.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/systrace.h b/sys/dev/systrace.h index beb30a63851..ddafb5d9947 100644 --- a/sys/dev/systrace.h +++ b/sys/dev/systrace.h @@ -1,4 +1,4 @@ -/* $OpenBSD: systrace.h,v 1.12 2002/12/04 17:37:39 mickey Exp $ */ +/* $OpenBSD: systrace.h,v 1.13 2003/03/28 11:52:05 mickey Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -34,9 +34,6 @@ #include <sys/ioccom.h> - /* XXX kill this after a major release */ -#define SYSTR_CLONE _IOR('s', 1, int) - #define SYSTR_EMULEN 8 /* sync with sys proc */ struct str_msg_emul { @@ -142,6 +139,7 @@ struct systrace_replace { }; #define STRIOCCLONE _IOR('s', 100, int) +#define SYSTR_CLONE STRIOCCLONE #define STRIOCATTACH _IOW('s', 101, pid_t) #define STRIOCDETACH _IOW('s', 102, pid_t) #define STRIOCANSWER _IOW('s', 103, struct systrace_answer) |