From 16864a2b809f78af3230c9a2860d6a3fd67c2f58 Mon Sep 17 00:00:00 2001 From: rwatson Date: Mon, 1 Jun 2009 16:13:06 +0000 Subject: 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 --- sys/sys/sysent.h | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/sys/sysent.h') diff --git a/sys/sys/sysent.h b/sys/sys/sysent.h index c068946..f17f4f03 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; -- cgit v1.1