mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-17 11:31:43 +08:00
16 lines
346 B
C
16 lines
346 B
C
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <sys/time.h>
|
|
#include <rtems.h>
|
|
#include <rtems/error.h>
|
|
|
|
__weak_reference(_kevent, kevent);
|
|
|
|
int
|
|
_kevent(int kq, const struct kevent *changelist, int nchanges,
|
|
struct kevent *eventlist, int nevents, const struct timespec *timeout)
|
|
{
|
|
rtems_panic("Unimplemented method!!!\n");
|
|
return -1;
|
|
}
|