summaryrefslogtreecommitdiffstats
path: root/freebsd/sys/sys/jail.h
diff options
context:
space:
mode:
Diffstat (limited to 'freebsd/sys/sys/jail.h')
-rw-r--r--freebsd/sys/sys/jail.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/freebsd/sys/sys/jail.h b/freebsd/sys/sys/jail.h
index b772e91c..8168ff2c 100644
--- a/freebsd/sys/sys/jail.h
+++ b/freebsd/sys/sys/jail.h
@@ -399,7 +399,18 @@ getcredhostid(struct ucred *cred, unsigned long *hostid)
}
#endif /* __rtems__ */
void prison0_init(void);
+#ifndef __rtems__
int prison_allow(struct ucred *, unsigned);
+#else /* __rtems__ */
+static inline int
+prison_allow(struct ucred *cred1, unsigned i)
+{
+
+ (void)cred1;
+ (void)i;
+ return (0);
+}
+#endif /* __rtems__ */
#ifndef __rtems__
int prison_check(struct ucred *cred1, struct ucred *cred2);
#else /* __rtems__ */