v/vlib/picoev
Kim Shrier 2d4ccf6829
vlib: replace macros that resolve to __builtin_bswapnn calls for tcc (#19305)
The tcc compiler does not have __builtin_bswap64, __builtin_bswap32,
and __builtin_bswap16 functions.  The various hton and ntoh macros
resolve down to these functions.  When compiling with tcc, we should
be using the analogous functions from net.conv.
2023-09-08 07:42:28 +03:00
..
loop_default.c.v picoev, picohttparser: reimplement in V (#18506) 2023-07-12 09:40:16 +03:00
loop_freebsd.c.v picoev, picohttparser: reimplement in V (#18506) 2023-07-12 09:40:16 +03:00
loop_linux.c.v picoev, picohttparser: reimplement in V (#18506) 2023-07-12 09:40:16 +03:00
loop_macos.c.v picoev, picohttparser: reimplement in V (#18506) 2023-07-12 09:40:16 +03:00
picoev.v picoev: add initial values for struct field callbacks, to fix new compiler notices (#19065) 2023-08-06 07:09:16 +03:00
README.md picoev, picohttparser: reimplement in V (#18506) 2023-07-12 09:40:16 +03:00
socket_util.c.v vlib: replace macros that resolve to __builtin_bswapnn calls for tcc (#19305) 2023-09-08 07:42:28 +03:00

Description:

picoev is a V implementation of picoev, which in turn is "A tiny, lightning fast event loop for network applications".