summaryrefslogtreecommitdiff
path: root/rts/win32
diff options
context:
space:
mode:
authorDuncan Coutts <duncan@well-typed.com>2021-01-03 12:22:37 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-01-25 05:11:14 -0500
commit083d7aeb5b0f9e47bf34459415367502492c5e06 (patch)
tree8af2ec61e332b11d4571df8345d0139018396639 /rts/win32
parentb18d9e97252c9dd12f08d3e6f56bfec6a6d2469a (diff)
downloadhaskell-083d7aeb5b0f9e47bf34459415367502492c5e06.tar.gz
Move win32/IOManager to win32/MIOManager
It is only for MIO, and we want to use the generic name IOManager for the name of the common parts of the interface and dispatch.
Diffstat (limited to 'rts/win32')
-rw-r--r--rts/win32/AsyncMIO.c2
-rw-r--r--rts/win32/MIOManager.c (renamed from rts/win32/IOManager.c)4
-rw-r--r--rts/win32/MIOManager.h (renamed from rts/win32/IOManager.h)0
-rw-r--r--rts/win32/ThrIOManager.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/rts/win32/AsyncMIO.c b/rts/win32/AsyncMIO.c
index 5d55f79d74..6a2a43bd08 100644
--- a/rts/win32/AsyncMIO.c
+++ b/rts/win32/AsyncMIO.c
@@ -17,7 +17,7 @@
#include "Schedule.h"
#include "Capability.h"
#include "win32/AsyncMIO.h"
-#include "win32/IOManager.h"
+#include "win32/MIOManager.h"
/*
* Overview:
diff --git a/rts/win32/IOManager.c b/rts/win32/MIOManager.c
index 271f0e5335..06b28bca2b 100644
--- a/rts/win32/IOManager.c
+++ b/rts/win32/MIOManager.c
@@ -1,4 +1,4 @@
-/* IOManager.c
+/* MIOManager.c
*
* Non-blocking / asynchronous I/O for Win32.
*
@@ -12,7 +12,7 @@
#include "Rts.h"
#include "RtsUtils.h"
-#include "IOManager.h"
+#include "MIOManager.h"
#include "WorkQueue.h"
#include "ConsoleHandler.h"
#include <stdio.h>
diff --git a/rts/win32/IOManager.h b/rts/win32/MIOManager.h
index cb876db9cc..cb876db9cc 100644
--- a/rts/win32/IOManager.h
+++ b/rts/win32/MIOManager.h
diff --git a/rts/win32/ThrIOManager.c b/rts/win32/ThrIOManager.c
index 1b7ba851e2..039d62fad3 100644
--- a/rts/win32/ThrIOManager.c
+++ b/rts/win32/ThrIOManager.c
@@ -9,7 +9,7 @@
* ---------------------------------------------------------------------------*/
#include "Rts.h"
-#include "IOManager.h"
+#include "MIOManager.h"
#include "rts\OSThreads.h"
#include "Prelude.h"
#include <windows.h>