comments.

2008-10-14  Sven Neumann  <sven@gimp.org>

	* app/signals.c (gimp_init_signal_handlers): comments.


svn path=/trunk/; revision=27274
This commit is contained in:
Sven Neumann 2008-10-14 07:29:59 +00:00 committed by Sven Neumann
parent af64515e53
commit 121785c0ed
2 changed files with 10 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2008-10-14 Sven Neumann <sven@gimp.org>
* app/signals.c (gimp_init_signal_handlers): comments.
2008-10-13 Sven Neumann <sven@gimp.org>
Bug 556182 Could you please explain a few strings [I18N]

View File

@ -39,11 +39,11 @@ void
gimp_init_signal_handlers (GimpStackTraceMode stack_trace_mode)
{
#ifndef G_OS_WIN32
/* No use catching these on Win32, the user won't get any
* stack trace from glib anyhow. It's better to let Windows inform
* about the program error, and offer debugging (if the user
* has installed MSVC or some other compiler that knows how to
* install itself as a handler for program errors).
/* No use catching these on Win32, the user won't get any stack
* trace from glib anyhow. It's better to let Windows inform about
* the program error, and offer debugging (if the user has installed
* MSVC or some other compiler that knows how to install itself as a
* handler for program errors).
*/
/* Handle fatal signals */
@ -69,7 +69,7 @@ gimp_init_signal_handlers (GimpStackTraceMode stack_trace_mode)
/* Restart syscalls on SIGCHLD */
gimp_signal_private (SIGCHLD, SIG_DFL, SA_RESTART);
#endif /* G_OS_WIN32 */
#endif /* ! G_OS_WIN32 */
}