kernel: add equeue object
equeue is a way for the kernel to deliver events to userspace programs.
This commit is contained in:
9
libmango/include-user/mango/equeue.h
Normal file
9
libmango/include-user/mango/equeue.h
Normal file
@@ -0,0 +1,9 @@
|
||||
#ifndef MANGO_EQUEUE_H_
|
||||
#define MANGO_EQUEUE_H_
|
||||
|
||||
#include <mango/types.h>
|
||||
|
||||
extern kern_status_t equeue_create(kern_handle_t *out);
|
||||
extern kern_status_t equeue_dequeue(kern_handle_t eq, equeue_packet_t *out);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user