commit 652e50e94fcf2376d29c9cc45695cdc98781a114
parent 08ad02e5f0cfeda1086f20f42ba91edfb33992fc
Author: Drew DeVault <sir@cmpwn.com>
Date: Sat, 14 Jan 2023 11:13:28 +0100
rt: remove -x86_64.ha
The bootstrap build system cannot deal with -tags
Signed-off-by: Drew DeVault <sir@cmpwn.com>
Diffstat:
3 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/rt/+linux/+aarch64.ha b/rt/+linux/+aarch64.ha
@@ -44,3 +44,8 @@ export type cmsghdr = struct {
};
export def EDEADLOCK: int = EDEADLK;
+
+export type epoll_event = struct {
+ events: u32,
+ data: epoll_data,
+};
diff --git a/rt/+linux/+riscv64.ha b/rt/+linux/+riscv64.ha
@@ -42,3 +42,8 @@ export type cmsghdr = struct {
};
export def EDEADLOCK: int = EDEADLK;
+
+export type epoll_event = struct {
+ events: u32,
+ data: epoll_data,
+};
diff --git a/rt/+linux/-x86_64.ha b/rt/+linux/-x86_64.ha
@@ -1,5 +0,0 @@
-export type epoll_event = struct {
- // Not packed on !x86_64
- events: u32,
- data: epoll_data,
-};