We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d260e34 commit 8f91815Copy full SHA for 8f91815
vlib/os/notify/epoll.h
@@ -1,6 +1,12 @@
1
// NOTE: tcc does not support yet __attribute__ ((__packed__)) properly,
2
// so the __EPOLL_PACKED macro that /usr/include/bits/epoll.h uses does not work :-| .
3
// However, it *does support* the older `#pragma pack(push, 1)`
4
+#if defined(__TINYC__) && defined(__V_amd64)
5
#pragma pack(push, 1)
6
+#endif
7
+
8
#include <sys/epoll.h>
9
10
11
#pragma pack(pop)
12
0 commit comments