@@ -130,15 +130,15 @@ triggered automatically by the runtime.
130130On macOS, we catch crashes and other events using a signal handler. At
131131time of writing, this is installed for the following signals:
132132
133- | Signal | | Description | Comment |
134- | --------| ---------| ---------------------------| ------------------------------------------------------|
135- | 3 | SIGQUIT | Quit program | |
136- | 4 | SIGILL | Illegal instruction | |
137- | 5 | SIGTRAP | Trace trap | |
138- | 6 | SIGABRT | Abort program | |
139- | 8 | SIGFPE | Floating point exception | On Intel, integer divide by zero also triggers this. |
140- | 10 | SIGBUS | Bus error | |
141- | 11 | SIGSEGV | Segmentation violation | |
133+ | Signal | | Description | Comment |
134+ | --------- | ---------| ---------------------------| ------------------------------------------------------|
135+ | 3 | SIGQUIT | Quit program | |
136+ | 4 | SIGILL | Illegal instruction | |
137+ | 5 | SIGTRAP | Trace trap | |
138+ | 6 | SIGABRT | Abort program | |
139+ | 8 | SIGFPE | Floating point exception | On Intel, integer divide by zero also triggers this. |
140+ | 10 | SIGBUS | Bus error | |
141+ | 11 | SIGSEGV | Segmentation violation | |
142142
143143If crash catching is enabled, the signal handler will be installed for
144144any process that links the Swift runtime. If you replace the handlers
0 commit comments