mirror of
https://github.com/justinian/jsix.git
synced 2025-12-09 16:04:32 -08:00
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.
15 lines
237 B
Modula-2
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]
|
|
}
|
|
}
|