| author | |
| committer | |
| log | 80a341b4114ac171a2592423027e0ea4015fcf81 |
| tree | 34fe1812d3d1f09ed65da74187b07b9b69c22778 |
| parent | 8b269f7e18ee1e0874b7cbf7cf2853b7e34b6a36 |
this signal seems to be deprecated and/or useless on every target2 files changed, 0 insertions(+), 4 deletions(-)
lib/std/start.zig-3| ... | ... | @@ -771,9 +771,6 @@ fn maybeIgnoreSignals() void { |
| 771 | 771 | if (@hasField(posix.SIG, "IO") and !std.options.keep_sig_io) |
| 772 | 772 | posix.sigaction(.IO, &act, null); |
| 773 | 773 | |
| 774 | if (@hasField(posix.SIG, "POLL") and !std.options.keep_sig_poll) | |
| 775 | posix.sigaction(.POLL, &act, null); | |
| 776 | ||
| 777 | 774 | if (@hasField(posix.SIG, "PIPE") and !std.options.keep_sig_pipe) |
| 778 | 775 | posix.sigaction(.PIPE, &act, null); |
| 779 | 776 | } |
lib/std/std.zig-1| ... | ... | @@ -144,7 +144,6 @@ pub const Options = struct { |
| 144 | 144 | |
| 145 | 145 | crypto_fork_safety: bool = true, |
| 146 | 146 | |
| 147 | keep_sig_poll: bool = false, | |
| 148 | 147 | keep_sig_io: bool = false, |
| 149 | 148 | |
| 150 | 149 | /// By default Zig disables SIGPIPE by setting a "no-op" handler for it. Set this option |