| ... | ... | @@ -164,6 +164,7 @@ export fn stage2_render_ast(tree: *ast.Tree, output_file: *FILE) Error { |
| 164 | 164 | error.OutOfMemory => return .OutOfMemory, |
| 165 | 165 | error.Unexpected => return .Unexpected, |
| 166 | 166 | error.InputOutput => return .FileSystem, |
| 167 | error.InvalidFd => return .FileSystem, |
| 167 | 168 | }; |
| 168 | 169 | return .None; |
| 169 | 170 | } |
| ... | ... | @@ -635,6 +636,7 @@ export fn stage2_libc_parse(stage1_libc: *Stage2LibCInstallation, libc_file_z: [ |
| 635 | 636 | error.NotDir => return .NotDir, |
| 636 | 637 | error.DeviceBusy => return .DeviceBusy, |
| 637 | 638 | error.FileLocksNotSupported => unreachable, |
| 639 | error.InvalidFd => return .FileSystem, |
| 638 | 640 | }; |
| 639 | 641 | stage1_libc.initFromStage2(libc); |
| 640 | 642 | return .None; |
| ... | ... | @@ -679,6 +681,7 @@ export fn stage2_libc_render(stage1_libc: *Stage2LibCInstallation, output_file: |
| 679 | 681 | error.AccessDenied => return .AccessDenied, |
| 680 | 682 | error.Unexpected => return .Unexpected, |
| 681 | 683 | error.InputOutput => return .FileSystem, |
| 684 | error.InvalidFd => return .FileSystem, |
| 682 | 685 | }; |
| 683 | 686 | return .None; |
| 684 | 687 | } |