diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-06-01 09:51:31 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-06-01 09:51:31 +0000 |
commit | ef21a2cb5b0d81e925c90a50449ba06a311298e0 (patch) | |
tree | b706bc221bbd3d98138080ff2e0c0e3d95443072 /usr.bin/ktrace/subr.c | |
parent | 786bbfc14be1f59f643c0d189e0a2fa7b271381c (diff) |
Userland bits for utrace record handling; from otto@
Diffstat (limited to 'usr.bin/ktrace/subr.c')
-rw-r--r-- | usr.bin/ktrace/subr.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ktrace/subr.c b/usr.bin/ktrace/subr.c index 0b44bb02498..251a5db5096 100644 --- a/usr.bin/ktrace/subr.c +++ b/usr.bin/ktrace/subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr.c,v 1.7 2011/07/08 19:29:44 otto Exp $ */ +/* $OpenBSD: subr.c,v 1.8 2013/06/01 09:51:28 miod Exp $ */ /* $NetBSD: subr.c,v 1.6 1995/08/31 23:01:45 jtc Exp $ */ /*- @@ -71,6 +71,9 @@ getpoints(s) case 't': facs |= KTRFAC_STRUCT; break; + case 'u': + facs |= KTRFAC_USER; + break; case '+': facs |= DEF_POINTS; break; |