How to use epoll_ctl correctly?

when deleting a fd from the epoll event collection using epoll_ctl, is the fourth parameter event required?

for example, delete a writable event in ET mode,

    void Del(int fd) 
    {
        epoll_event ev;
        memset(&ev, 0, sizeof(ev));
        ev.data.fd = fd;                    //
        ev.events = EPOLLOUT | EPOLLET;     //
        epoll_ctl(epollFd, EPOLL_CTL_DEL, fd, &ev);
    }

there is still no need to dimension

Dec.07,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b34ec2-2bf47.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b34ec2-2bf47.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?