aboutsummaryrefslogtreecommitdiff
path: root/shared
diff options
context:
space:
mode:
authorBobby <[email protected]>2026-07-12 04:25:15 +0530
committerBobby <[email protected]>2026-07-12 04:25:15 +0530
commitfbf067a7aa6b829dfdee989369027aa214285b0d (patch)
tree8e29825c0076ab970abc335fda1ae272791ab90d /shared
parent2324951126b542aeecfd8dd12b381265cce1566c (diff)
downloadakiba-fbf067a7aa6b829dfdee989369027aa214285b0d.tar.xz
akiba-fbf067a7aa6b829dfdee989369027aa214285b0d.zip
Make kernel structure compile: interrupts re-export root, restore kernel BootParams, wire common/shared modules, kagami activate, TSS align(4), fix union default and get_l4_address
Diffstat (limited to 'shared')
-rw-r--r--shared/fs/afs/types/catalog.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/fs/afs/types/catalog.zig b/shared/fs/afs/types/catalog.zig
index 04fc63c..506f4d7 100644
--- a/shared/fs/afs/types/catalog.zig
+++ b/shared/fs/afs/types/catalog.zig
@@ -17,7 +17,7 @@ pub const StackRecord = extern struct {
access_timestamp: u64 = 0,
backup_timestamp: u64 = 0,
permissions: Permissions = .{},
- special: SpecialInfo = .{},
+ special: SpecialInfo = .{ .raw = [_]u8{0} ** 16 },
text_encoding: u32 = 0,
reserved: u32 = 0,
@@ -37,7 +37,7 @@ pub const UnitRecord = extern struct {
access_timestamp: u64 = 0,
backup_timestamp: u64 = 0,
permissions: Permissions = .{},
- special: SpecialInfo = .{},
+ special: SpecialInfo = .{ .raw = [_]u8{0} ** 16 },
text_encoding: u32 = 0,
reserved2: u32 = 0,
data_channel: ChannelInfo = .{},