# HG changeset patch # User Paul Boddie # Date 1679582559 -3600 # Node ID c28f4b1c2dc2315fb356739ef85d0d80f763e700 # Parent caae4f22112bb9d9b8fd8f248d335ff5e97072ea Made the notify operation one-way, meaning that it does not produce a reply. diff -r caae4f22112b -r c28f4b1c2dc2 libsystypes/idl/notifier.idl --- a/libsystypes/idl/notifier.idl Wed Mar 22 23:14:12 2023 +0100 +++ b/libsystypes/idl/notifier.idl Thu Mar 23 15:42:39 2023 +0100 @@ -4,5 +4,5 @@ { /* Send notification events. */ - [opcode(25)] void notify(in notify_flags_t flags, in notify_values_t values); + [opcode(25), oneway] void notify(in notify_flags_t flags, in notify_values_t values); };