Files
jsix_import/definitions/objects/channel.def
Justin C. Miller 9b75acf0b5 [kernel] Re-add channel syscalls
Channels were unused, and while they were listed in syscalls.def, they
had no syscalls listed in their interface. This change adds them back,
and updates them to the curren syscall style.
2022-01-27 22:37:04 -08:00

15 lines
237 B
Modula-2

object channel : kobject {
uid 3ea38b96aa0e54c8
method create [constructor]
method close [destructor]
method send {
param data buffer [inout]
}
method receive {
param data buffer [out]
}
}