diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2020-10-04 17:07:24 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2020-10-04 17:07:24 +0000 |
commit | c0966f6327d1868647d015629afd53b59bcb8dc0 (patch) | |
tree | f7c4ae5e9ac1e09c66d63c2335509155d956dc51 /doc/exitcodes.html | |
parent | 1a3ab3a967e133ea64f7c9dab86aa88723baa9cd (diff) | |
download | execline-c0966f6327d1868647d015629afd53b59bcb8dc0.tar.xz |
doc: fix URLs
Diffstat (limited to 'doc/exitcodes.html')
-rw-r--r-- | doc/exitcodes.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/exitcodes.html b/doc/exitcodes.html index 51902f1..619f5d3 100644 --- a/doc/exitcodes.html +++ b/doc/exitcodes.html @@ -30,7 +30,7 @@ to <em>C</em>, with as much precision as possible ? <p> The problem is, there's more information in a wstat (the structure filled in by -<a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/waitpid.html">waitpid()</a>) +<a href="https://pubs.opengroup.org/onlinepubs/9699919799/functions/waitpid.html">waitpid()</a>) than a process can report by simply exiting. <em>P</em> could exit with the same exit code as <em>C</em>, but then what should it do if C has been killed by a signal ? @@ -52,7 +52,7 @@ can report. <p> Shells have their own -<a href="http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_08_02">convention</a> +<a href="https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_08_02">convention</a> for reporting crashes, but since any exit code greater than 127 is reported as is, the information given by the shell is unreliable: "child exited 129" and "child was killed by SIGHUP" are indistinguishable. When shells get |