diff options
author | Damien Zammit <damien@zamaudio.com> | 2020-07-11 14:58:54 +1000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-07-18 17:02:58 +0200 |
commit | 30c034165b783f9365cf889fc7915806cd5feab7 (patch) | |
tree | 03c4724cd144460827f5ea31998a906c31b62448 /libmachdev | |
parent | 7d3a63f4e88b4a7f54bfe72904ee33239bf0e620 (diff) | |
download | hurd-30c034165b783f9365cf889fc7915806cd5feab7.tar.gz hurd-30c034165b783f9365cf889fc7915806cd5feab7.tar.bz2 hurd-30c034165b783f9365cf889fc7915806cd5feab7.zip |
libmachdev: Add new RPC server stubs for ds_device_intr_*
Diffstat (limited to 'libmachdev')
-rw-r--r-- | libmachdev/ds_routines.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libmachdev/ds_routines.c b/libmachdev/ds_routines.c index f4044b72..da5e47e2 100644 --- a/libmachdev/ds_routines.c +++ b/libmachdev/ds_routines.c @@ -274,6 +274,19 @@ ds_device_map (struct mach_device *device, vm_prot_t prot, vm_offset_t offset, } +kern_return_t +ds_device_intr_register (mach_device_t dev, int id, int flags, + mach_port_t receive_port) +{ + return D_INVALID_OPERATION; +} + +kern_return_t +ds_device_intr_ack (mach_device_t dev, mach_port_t receive_port) +{ + return D_INVALID_OPERATION; +} + error_t machdev_create_device_port (size_t size, void *result) { |