summaryrefslogtreecommitdiff
path: root/usr/src/lib/libc
diff options
context:
space:
mode:
authorJerry Jelinek <jerry.jelinek@joyent.com>2018-08-08 11:55:46 +0000
committerJerry Jelinek <jerry.jelinek@joyent.com>2018-08-08 11:55:46 +0000
commit185a422e63f55e51465370d497ca1c1a13366df4 (patch)
tree453b9dfb7bcf20d2a40d87ffcdffce5a9d30e916 /usr/src/lib/libc
parent757454db6669c1186f60bc625510c1b67217aae6 (diff)
parent0e986b9d87352cd82909c748e7f684afe0ed579f (diff)
downloadillumos-joyent-185a422e63f55e51465370d497ca1c1a13366df4.tar.gz
[illumos-gate merge]
commit d8873b3136f0985c9e33ff8801644e1b4253b36c 9695 Slow crash dumps, significantly slower than live core commit 6ccea42291d6cef3970fbb35ece075406851267f 9694 Parallel dump hangs commit eea802b0a2c12269d15276d4657e5cd64dd541a4 9685 KPTI %cr3 handling needs fixes commit 72dc11568f48cd37cf8182a82d9cb55b22d7c805 9638 libc/port/fp/sigfpe.c: this statement may fall through commit 64216313af8955ed170cf25df29a04c18b3e0296 9249 System crash dump to NVME not working commit e6ccb06dae563daedbe76eeadbdd3940a4e4f693 9645 scf_read_propvec segfaults on error
Diffstat (limited to 'usr/src/lib/libc')
-rw-r--r--usr/src/lib/libc/port/fp/sigfpe.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr/src/lib/libc/port/fp/sigfpe.c b/usr/src/lib/libc/port/fp/sigfpe.c
index 9ba6c6ce72..9b1942423f 100644
--- a/usr/src/lib/libc/port/fp/sigfpe.c
+++ b/usr/src/lib/libc/port/fp/sigfpe.c
@@ -33,8 +33,6 @@
* California.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
/* Swap handler for SIGFPE codes. */
#include "lint.h"
@@ -155,6 +153,7 @@ _sigfpe_master(int sig, siginfo_t *siginfo, void *arg)
default: /* The common default treatment is to abort. */
break;
}
+ /* FALLTHROUGH */
case ((intptr_t)(SIGFPE_ABORT)):
abort();
break;