pub fn epoll_ctl<'a, T>(
    epfd: i32,
    op: EpollOp,
    fd: i32,
    event: T
) -> Result<(), Errno> where
    T: Into<Option<&'a mut EpollEvent>>,