aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/sysent.h
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2009-06-01 16:13:06 +0000
committerRobert Watson <rwatson@FreeBSD.org>2009-06-01 16:13:06 +0000
commit46c10f272c373c20d0e98e563d82597d7b568362 (patch)
tree5e24e98e60f440edc4dfb479f24c735d0d6ba584 /sys/sys/sysent.h
parent529cb8e3719e3aac9d3298429fec63cc5cbd2b6b (diff)
downloadsrc-46c10f272c373c20d0e98e563d82597d7b568362.tar.gz
src-46c10f272c373c20d0e98e563d82597d7b568362.zip
Add 'sy_flags', a currently unused per-syscall entry flags field that will
see future use in 9-CURRENT and 8-STABLE for features such as the capability-mode enable flag and pay-as-you-audit. Discussed with: jhb, sson
Notes
Notes: svn path=/head/; revision=193234
Diffstat (limited to 'sys/sys/sysent.h')
-rw-r--r--sys/sys/sysent.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/sys/sysent.h b/sys/sys/sysent.h
index c0689462227d..f17f4f0345f5 100644
--- a/sys/sys/sysent.h
+++ b/sys/sys/sysent.h
@@ -60,6 +60,7 @@ struct sysent { /* system call table */
/* optional argument conversion function. */
u_int32_t sy_entry; /* DTrace entry ID for systrace. */
u_int32_t sy_return; /* DTrace return ID for systrace. */
+ u_int32_t sy_flags; /* General flags for system calls. */
};
struct image_params;