guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 03/04: Treat 'SIG_IGN' as a pointer.


From: Ludovic Courtès
Subject: [Guile-commits] 03/04: Treat 'SIG_IGN' as a pointer.
Date: Tue, 11 Oct 2016 09:12:02 +0000 (UTC)

civodul pushed a commit to branch stable-2.0
in repository guile.

commit 7043b7ff643c3ada6bf9d51578cb720b6fc4c83b
Author: Ludovic Courtès <address@hidden>
Date:   Tue Oct 11 10:57:43 2016 +0200

    Treat 'SIG_IGN' as a pointer.
    
    * libguile/posix.c (scm_system_star): Cast 'SIG_IGN' to
    'scm_t_uintptr_t' and use 'scm_from_uintptr_t'.  This fixes an
    'int-conversion' warning with GCC 6.2.
---
 libguile/posix.c |   10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/libguile/posix.c b/libguile/posix.c
index 2359e61..1443a9e 100644
--- a/libguile/posix.c
+++ b/libguile/posix.c
@@ -1,6 +1,6 @@
 /* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
  *   2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013,
- *   2014 Free Software Foundation, Inc.
+ *   2014, 2016 Free Software Foundation, Inc.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
@@ -1482,9 +1482,13 @@ SCM_DEFINE (scm_system_star, "system*", 0, 0, 1,
 
   scm_dynwind_begin (0);
   /* Make sure the child can't kill us (as per normal system call).  */
-  scm_dynwind_sigaction (SIGINT, scm_from_ulong (SIG_IGN), SCM_UNDEFINED);
+  scm_dynwind_sigaction (SIGINT,
+                        scm_from_uintptr_t ((scm_t_uintptr) SIG_IGN),
+                        SCM_UNDEFINED);
 #ifdef SIGQUIT
-  scm_dynwind_sigaction (SIGQUIT, scm_from_ulong (SIG_IGN), SCM_UNDEFINED);
+  scm_dynwind_sigaction (SIGQUIT,
+                        scm_from_uintptr_t ((scm_t_uintptr) SIG_IGN),
+                        SCM_UNDEFINED);
 #endif
 
   res = scm_open_process (scm_nullstr, prog, args);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]