[quake3-commits] r1759 - trunk/code/sys

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Wed Dec 23 20:39:30 EST 2009


Author: tma
Date: 2009-12-23 20:39:30 -0500 (Wed, 23 Dec 2009)
New Revision: 1759

Modified:
   trunk/code/sys/sys_main.c
Log:
* Handle SIGINT

Modified: trunk/code/sys/sys_main.c
===================================================================
--- trunk/code/sys/sys_main.c	2009-12-24 00:40:39 UTC (rev 1758)
+++ trunk/code/sys/sys_main.c	2009-12-24 01:39:30 UTC (rev 1759)
@@ -557,6 +557,7 @@
 	signal( SIGFPE, Sys_SigHandler );
 	signal( SIGSEGV, Sys_SigHandler );
 	signal( SIGTERM, Sys_SigHandler );
+	signal( SIGINT, Sys_SigHandler );
 
 	while( 1 )
 	{



More information about the quake3-commits mailing list