diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-04-26 01:22:53 -0400 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-04-29 17:12:03 +0200 |
commit | 589735c3220793d1e9423bf6ec751b4625309aac (patch) | |
tree | 4ef4932d6546034c5d5ae3c996f794ae0f6bda49 /device | |
parent | f9a76508ab2e0b54af753fb017838857a059b3c6 (diff) | |
download | gnumach-589735c3220793d1e9423bf6ec751b4625309aac.tar.gz gnumach-589735c3220793d1e9423bf6ec751b4625309aac.tar.bz2 gnumach-589735c3220793d1e9423bf6ec751b4625309aac.zip |
Use c_string for dev_name_t in the device subsystem.
Added device_open_new and device_open_new_request and reused the old MiG
ID for xxx_device_set_status which has not been in used in the past
decade.
Note that device_open_new is gated on defining
DEVICE_ENABLE_DEVICE_OPEN_NEW because otherwise some hurd servers
wouldn't compile anymore unless patched. This macro allows us to control
the rollout.
Message-Id: <ZEi1LV+9ShuXqtcr@jupiter.tail36e24.ts.net>
Diffstat (limited to 'device')
-rw-r--r-- | device/ds_routines.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/device/ds_routines.c b/device/ds_routines.c index 94e61592..1f0bacf4 100644 --- a/device/ds_routines.c +++ b/device/ds_routines.c @@ -171,6 +171,14 @@ ds_device_open (ipc_port_t open_port, ipc_port_t reply_port, } io_return_t +ds_device_open_new (ipc_port_t open_port, ipc_port_t reply_port, + mach_msg_type_name_t reply_port_type, dev_mode_t mode, + const_dev_name_t name, device_t *devp) +{ + return ds_device_open (open_port, reply_port, reply_port_type, mode, name, devp); +} + +io_return_t ds_device_close (device_t dev) { /* Refuse if device is dead or not completely open. */ |