Beispiel #1
0
 public PosixResult TryControl(EPollOperation operation, SafeHandle fd, EPollEvents events, EPollData data)
 {
     return(EPollInterop.EPollControl(this, operation, fd, events, data.Long));
 }
Beispiel #2
0
 public static PosixResult EPollControl(EPoll epoll, EPollOperation operation, SafeHandle fd, EPollEvents events, long data)
 => EPollControl(epoll.DangerousGetHandle().ToInt32(), operation, fd.DangerousGetHandle().ToInt32(), events, data);
Beispiel #3
0
 public void Control(EPollOperation operation, SafeHandle fd, EPollEvents events, EPollData data)
 {
     TryControl(operation, fd, events, data)
     .ThrowOnError();
 }
Beispiel #4
0
 public static extern PosixResult EPollControl(int epoll, EPollOperation operation, int fd, EPollEvents events, long data);