emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 294b788: Fix compilation of Cygwin w32 port


From: Eli Zaretskii
Subject: [Emacs-diffs] master 294b788: Fix compilation of Cygwin w32 port
Date: Sat, 02 Apr 2016 09:41:06 +0000

branch: master
commit 294b788009564e2692afb27a8205593da05c344c
Author: Andy Moreton <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Fix compilation of Cygwin w32 port
    
    * src/w32xfns.c (init_crit, delete_crit) [HAVE_W32NOTIFY]: Only
    initialize and free the notification set if compiling with
    w32notify feature.
---
 src/w32xfns.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/w32xfns.c b/src/w32xfns.c
index 9b633c4..b5b22c9 100644
--- a/src/w32xfns.c
+++ b/src/w32xfns.c
@@ -48,6 +48,7 @@ init_crit (void)
      when the input queue is empty, so make it a manual reset event. */
   input_available = CreateEvent (NULL, TRUE, FALSE, NULL);
 
+#if HAVE_W32NOTIFY
   /* Initialize the linked list of notifications sets that will be
      used to communicate between the watching worker threads and the
      main thread.  */
@@ -60,6 +61,7 @@ init_crit (void)
     }
   else
     DebPrint(("Out of memory: can't initialize notifications sets."));
+#endif
 
 #ifdef WINDOWSNT
   keyboard_handle = input_available;
@@ -90,6 +92,7 @@ delete_crit (void)
       interrupt_handle = NULL;
     }
 
+#if HAVE_W32NOTIFY
   if (notifications_set_head)
     {
       /* Free any remaining notifications set that could be left over.  */
@@ -104,6 +107,7 @@ delete_crit (void)
        }
     }
   free (notifications_set_head);
+#endif
 }
 
 void



reply via email to

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