diff options
-rw-r--r-- | hurd/msg.defs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/hurd/msg.defs b/hurd/msg.defs index 805f8df0..8e0f8400 100644 --- a/hurd/msg.defs +++ b/hurd/msg.defs @@ -81,6 +81,16 @@ routine set_init_port ( which: int; port: mach_port_t); +routine get_init_ports ( + process: mach_port_t; + task: task_t; + out ports: portarray_t); + +routine set_init_ports ( + process: mach_port_t; + task: task_t; + ports: portarray_t); + routine get_init_int ( process: mach_port_t; task: task_t; @@ -93,6 +103,16 @@ routine set_init_int ( which: int; value: int); +routine get_init_ints ( + process: mach_port_t; + task: task_t; + out values: intarray_t); + +routine set_init_ints ( + process: mach_port_t; + task: task_t; + values: intarray_t); + /* These two calls fetch and store the file descriptor table. */ routine get_dtable ( |