| author | |
| committer | |
| log | 9996f8b9b17f7e04be64ac220c9bad743b45a2b7 |
| tree | 2ba412322126f796e30dfc05040c73853d31c314 |
| parent | c59aee03c84efd344536dbfd6622cf87557bf66f |
| signature |
Co-authored-by: Alex Rønne Petersen <alex@alexrp.com>1 files changed, 2 insertions(+), 0 deletions(-)
lib/std/c/darwin.zig+2| ... | ... | @@ -59,6 +59,7 @@ pub const EXC = enum(exception_type_t) { |
| 59 | 59 | pub const SOFT_SIGNAL = 0x10003; |
| 60 | 60 | |
| 61 | 61 | pub const MASK = packed struct(u32) { |
| 62 | _0: u1 = 0, | |
| 62 | 63 | BAD_ACCESS: bool = false, |
| 63 | 64 | BAD_INSTRUCTION: bool = false, |
| 64 | 65 | ARITHMETIC: bool = false, |
| ... | ... | @@ -72,6 +73,7 @@ pub const EXC = enum(exception_type_t) { |
| 72 | 73 | RESOURCE: bool = false, |
| 73 | 74 | GUARD: bool = false, |
| 74 | 75 | CORPSE_NOTIFY: bool = false, |
| 76 | _14: u18 = 0, | |
| 75 | 77 | |
| 76 | 78 | pub const MACHINE: MASK = @bitCast(@as(u32, 0)); |
| 77 | 79 |