mirror of
https://github.com/opnsense/src.git
synced 2026-03-18 16:52:21 -04:00
elementary exercising of kqueues on datagram and stream sockets. Note that the datagram write kqueue case is left untested due to potentially confusing behavior for the developer (me) that might require attention.
11 lines
113 B
Makefile
11 lines
113 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PROG= kqueue
|
|
NOMAN= yes
|
|
|
|
kqueue: kqueue.c
|
|
gcc -Wall -o kqueue kqueue.c
|
|
|
|
.include <bsd.prog.mk>
|