[io-layer] Remove unused WaitForMultipleObjects
authorLudovic Henry <ludovic@xamarin.com>
Mon, 25 Jul 2016 15:44:55 +0000 (17:44 +0200)
committerLudovic Henry <ludovic@xamarin.com>
Thu, 18 Aug 2016 19:51:14 +0000 (21:51 +0200)
mono/io-layer/wait.c
mono/io-layer/wait.h
mono/io-layer/wapi-remap.h

index be7e2a6ded7aa10ce2937f01e0bb2e3b57de73d3..5ccec7bf9add8f4c4a2a89796389365b82e56091 100644 (file)
@@ -155,12 +155,6 @@ guint32 WaitForMultipleObjectsEx(guint32 numobjects, gpointer *handles,
                g_error ("%s: unknown ret value %d", __func__, ret);
 }
 
-guint32 WaitForMultipleObjects(guint32 numobjects, gpointer *handles,
-                              gboolean waitall, guint32 timeout)
-{
-       return WaitForMultipleObjectsEx(numobjects, handles, waitall, timeout, FALSE);
-}
-
 /**
  * WaitForInputIdle:
  * @handle: a handle to the process to wait for
index ccaf3adfc8534c52e9f1d85121fc3caf4ac71bf0..baef623713929b7f9df0935326cfafb8c88bbf86 100644 (file)
@@ -30,8 +30,6 @@ extern guint32 WaitForSingleObjectEx(gpointer handle, guint32 timeout,
                                        gboolean alertable);
 extern guint32 SignalObjectAndWait(gpointer signal_handle, gpointer wait,
                                   guint32 timeout, gboolean alertable);
-extern guint32 WaitForMultipleObjects(guint32 numobjects, gpointer *handles,
-                                     gboolean waitall, guint32 timeout);
 extern guint32 WaitForMultipleObjectsEx(guint32 numobjects, gpointer *handles,
                                      gboolean waitall, guint32 timeout, gboolean alertable);
 extern guint32 WaitForInputIdle(gpointer handle, guint32 timeout);
index 8b81978e73cb06a6b529928b945d65864d3b89ac..25c7ea552488b1f10c521942cc6ba0a54f97dbaf 100644 (file)
@@ -95,7 +95,6 @@
 #define VerLanguageName wapi_VerLanguageName 
 #define WaitForSingleObjectEx wapi_WaitForSingleObjectEx
 #define SignalObjectAndWait wapi_SignalObjectAndWait
-#define WaitForMultipleObjects wapi_WaitForMultipleObjects
 #define WaitForMultipleObjectsEx wapi_WaitForMultipleObjectsEx
 #define WaitForInputIdle wapi_WaitForInputIdle