epollCtlMod() — netty Function Reference
Architecture documentation for the epollCtlMod() function in Native.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 4be7ae81_6216_6982_60ae_07cf5b4e263f["epollCtlMod()"] 67956c01_800f_62e3_c02e_32defdb23f9b["Native"] 4be7ae81_6216_6982_60ae_07cf5b4e263f -->|defined in| 67956c01_800f_62e3_c02e_32defdb23f9b f27e4100_9d1b_a612_bc04_dd1c3bcdd987["epollCtlMod0()"] 4be7ae81_6216_6982_60ae_07cf5b4e263f -->|calls| f27e4100_9d1b_a612_bc04_dd1c3bcdd987 style 4be7ae81_6216_6982_60ae_07cf5b4e263f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-classes-epoll/src/main/java/io/netty/channel/epoll/Native.java lines 253–258
public static void epollCtlMod(int efd, final int fd, final int flags) throws IOException {
int res = epollCtlMod0(efd, fd, flags);
if (res < 0) {
throw newIOException("epoll_ctl", res);
}
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does epollCtlMod() do?
epollCtlMod() is a function in the netty codebase, defined in transport-classes-epoll/src/main/java/io/netty/channel/epoll/Native.java.
Where is epollCtlMod() defined?
epollCtlMod() is defined in transport-classes-epoll/src/main/java/io/netty/channel/epoll/Native.java at line 253.
What does epollCtlMod() call?
epollCtlMod() calls 1 function(s): epollCtlMod0.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free