Revert "Issue #220 Calling exit from a signal handler is not safe."

This commit is contained in:
Guy McSwain 2020-05-31 13:44:14 -05:00
parent c85285ee38
commit fc37a8c867
2 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <http://unlicense.org/>
*/
/* pigpio version 7602 */
/* pigpio version 76 */
/* include ------------------------------------------------------- */
@ -5621,7 +5621,7 @@ static void sigHandler(int signum)
default:
DBG(DBG_ALWAYS, "Unhandled signal %d, terminating\n", signum);
gpioTerminate();
_exit();
exit(-1);
}
}
}
@ -5631,7 +5631,7 @@ static void sigHandler(int signum)
DBG(DBG_ALWAYS, "Unhandled signal %d, terminating\n", signum);
gpioTerminate();
_exit();
exit(-1);
}
}

View File

@ -30,7 +30,7 @@ For more information, please refer to <http://unlicense.org/>
#include <stdint.h>
#include <pthread.h>
#define PIGPIO_VERSION 7602
#define PIGPIO_VERSION 7601
/*TEXT