diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2026-05-20 02:05:02 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2026-07-07 01:25:26 +0000 |
| commit | d6ff3bb3de91a2f1980c24e748ea5dc16b0987fd (patch) | |
| tree | 5627ae16211ee38b49cee89d8d28a2e0135e27bb | |
| parent | 606061ea463dd1d7c3664b296e569b4b25d0f275 (diff) | |
libsys: export pdopenpid(2)
Reviewed by: markj
Tested by: pho
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Differential revision: https://reviews.freebsd.org/D57124
| -rw-r--r-- | lib/libsys/Symbol.sys.map | 1 | ||||
| -rw-r--r-- | sys/sys/procdesc.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/libsys/Symbol.sys.map b/lib/libsys/Symbol.sys.map index 7f5c252af91b..05678ad0a7b6 100644 --- a/lib/libsys/Symbol.sys.map +++ b/lib/libsys/Symbol.sys.map @@ -391,6 +391,7 @@ FBSD_1.8 { }; FBSD_1.9 { + pdopenpid; pdrfork; pdrfork_thread; renameat2; diff --git a/sys/sys/procdesc.h b/sys/sys/procdesc.h index 9eb64525e430..ba72cf573c31 100644 --- a/sys/sys/procdesc.h +++ b/sys/sys/procdesc.h @@ -137,6 +137,7 @@ pid_t pdfork(int *, int); pid_t pdrfork(int *, int, int); int pdkill(int, int); int pdgetpid(int, pid_t *); +int pdopenpid(pid_t, int); int pdwait(int, int *, int, struct __wrusage *, struct __siginfo *); pid_t pdrfork_thread(int *, int, int, void *, int (*)(void *), void *); __END_DECLS |
