Skip to content

Instantly share code, notes, and snippets.

View maojr's full-sized avatar
🎯
Focusing

maojr

🎯
Focusing
View GitHub Profile
@maojr
maojr / epoll.c
Last active November 20, 2023 10:51
examples of I/O multiplexing(select/poll/epoll)
// an example of epoll level trigger
#include <stdio.h>
#include <stdlib.h>
#include <sys/epoll.h>
#define MAX_EVENTS 10
int
main(void)
{