summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--freebsd/sys/sys/proc.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/freebsd/sys/sys/proc.h b/freebsd/sys/sys/proc.h
index 32d297a5..e31f1992 100644
--- a/freebsd/sys/sys/proc.h
+++ b/freebsd/sys/sys/proc.h
@@ -940,8 +940,13 @@ void proc_reparent(struct proc *child, struct proc *newparent);
struct pstats *pstats_alloc(void);
void pstats_fork(struct pstats *src, struct pstats *dst);
void pstats_free(struct pstats *ps);
+#ifndef __rtems__
int securelevel_ge(struct ucred *cr, int level);
int securelevel_gt(struct ucred *cr, int level);
+#else /* __rtems__ */
+#define securelevel_ge(x, y) 0
+#define securelevel_gt(x, y) 0
+#endif /* __rtems__ */
void sess_hold(struct session *);
void sess_release(struct session *);
int setrunnable(struct thread *);