summaryrefslogtreecommitdiffstats
path: root/rtemsbsd
diff options
context:
space:
mode:
authorJennifer Averett <jennifer.averett@oarcorp.com>2012-03-27 15:00:44 -0500
committerJennifer Averett <jennifer.averett@oarcorp.com>2012-03-27 15:00:44 -0500
commit334957baa1e83b81b2fa2ce555a60603b3e660af (patch)
tree65966635ab2dccaf7fb051610fc4be2d8e95f343 /rtemsbsd
parentForgot to include Makefile in last commit. (diff)
downloadrtems-libbsd-334957baa1e83b81b2fa2ce555a60603b3e660af.tar.bz2
Moved prison_free and prison_hold to rtems-bsd-jail.c
Diffstat (limited to 'rtemsbsd')
-rw-r--r--rtemsbsd/src/rtems-bsd-jail.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/rtemsbsd/src/rtems-bsd-jail.c b/rtemsbsd/src/rtems-bsd-jail.c
index bb7fe699..ac4d14cc 100644
--- a/rtemsbsd/src/rtems-bsd-jail.c
+++ b/rtemsbsd/src/rtems-bsd-jail.c
@@ -3,7 +3,7 @@
*
* @ingroup rtems_bsd_rtems
*
- * @brief TODO.
+ * @brief This object is an minimal rtems implementation of kern_jail.c.
*/
/*
@@ -90,3 +90,8 @@ struct prison prison0 = {
};
MTX_SYSINIT(prison0, &prison0.pr_mtx, "jail mutex", MTX_DEF);
+
+void prison_free(struct prison *pr) {}
+void prison_hold(struct prison *pr) {}
+
+