diff options
| author | Jamie Gritton <jamie@FreeBSD.org> | 2025-09-04 20:27:47 +0000 |
|---|---|---|
| committer | Jamie Gritton <jamie@FreeBSD.org> | 2025-09-04 20:27:47 +0000 |
| commit | 851dc7f859c23cab09a348bca03ab655534fb7e0 (patch) | |
| tree | f55ce6a96ba394ceda66f2564885dcd4f623c30f /lib/libsys/Symbol.sys.map | |
| parent | 2a346c8993cbb92a321a7c25bd9ac4dcaae352d1 (diff) | |
jail: add jail descriptors
Similar to process descriptors, jail desriptors are allow jail
administration using the file descriptor interface instead of JIDs.
They come from and can be used by jail_set(2) and jail_get(2),
and there are two new system calls, jail_attach_jd(2) and
jail_remove_jd(2).
Reviewed by: bz, brooks
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D43696
Diffstat (limited to 'lib/libsys/Symbol.sys.map')
| -rw-r--r-- | lib/libsys/Symbol.sys.map | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libsys/Symbol.sys.map b/lib/libsys/Symbol.sys.map index 1a297f9df581..e3fd8ac10621 100644 --- a/lib/libsys/Symbol.sys.map +++ b/lib/libsys/Symbol.sys.map @@ -382,6 +382,8 @@ FBSD_1.8 { getrlimitusage; inotify_add_watch_at; inotify_rm_watch; + jail_attach_jd; + jail_remove_jd; kcmp; setcred; setgroups; |
