We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06d0b5d commit cc31fd9Copy full SHA for cc31fd9
include/xen/interface/event_channel.h
@@ -177,6 +177,19 @@ struct evtchn_unmask {
177
evtchn_port_t port;
178
};
179
180
+/*
181
+ * EVTCHNOP_reset: Close all event channels associated with specified domain.
182
+ * NOTES:
183
+ * 1. <dom> may be specified as DOMID_SELF.
184
+ * 2. Only a sufficiently-privileged domain may specify other than DOMID_SELF.
185
+ */
186
+#define EVTCHNOP_reset 10
187
+struct evtchn_reset {
188
+ /* IN parameters. */
189
+ domid_t dom;
190
+};
191
+typedef struct evtchn_reset evtchn_reset_t;
192
+
193
struct evtchn_op {
194
uint32_t cmd; /* EVTCHNOP_* */
195
union {
0 commit comments