Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Date: Fri, 08 Jul 2005 22:43:48 +0200 (CEST)
From: Jiri Svoboda Subject: [SDL] signal handling bug I encountered the following bug: SDL doesn't reset signal handlers for SIGTERM and SIGINT, after calling SDL_Quit these remain hooked to the handler in SDL_quit.c, being translated into SDL_QUIT events. Consequently an application that issues a SDL_Quit and remains running will ignore any SIGTERM or SIGINT., and specifically CTRL-C presses.
- Loading branch information
Showing
with
35 additions
and 1 deletion.
- +3 −0 src/events/SDL_active.c
- +6 −0 src/events/SDL_events.c
- +6 −0 src/events/SDL_events_c.h
- +3 −0 src/events/SDL_keyboard.c
- +3 −0 src/events/SDL_mouse.c
- +14 −1 src/events/SDL_quit.c