We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7deb41 commit 31250e1Copy full SHA for 31250e1
.DS_Store
6 KB
src/core/jobtable.rs
@@ -130,12 +130,12 @@ impl JobEntry {
130
signal::SIGPIPE => "Broken pipe",
131
signal::SIGALRM => "Alarm clock",
132
signal::SIGTERM => "Terminated",
133
- signal::SIGSTKFLT => "Stack fault",
+ // signal::SIGSTKFLT => "Stack fault", not in macOS
134
signal::SIGXCPU => "CPU time limit exceeded",
135
signal::SIGXFSZ => "File size limit exceeded",
136
signal::SIGVTALRM => "Virtual timer expired",
137
signal::SIGPROF => "Profiling timer expired",
138
- signal::SIGPWR => "Power failure",
+ // signal::SIGPWR => "Power failure", not in macOS
139
signal::SIGSYS => "Bad system call",
140
_ => "",
141
};
0 commit comments