summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/threadengines/threadengine_win32.cpp2
-rw-r--r--win/inspircd_namedpipe.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/threadengines/threadengine_win32.cpp b/src/threadengines/threadengine_win32.cpp
index 5a0635a09..a20251348 100644
--- a/src/threadengines/threadengine_win32.cpp
+++ b/src/threadengines/threadengine_win32.cpp
@@ -18,7 +18,7 @@ ThreadEngine::ThreadEngine(InspIRCd* Instance)
{
}
-void ThreadEngine::Create(Thread* thread)
+void ThreadEngine::Start(Thread* thread)
{
ThreadData* data = new ThreadData;
thread->state = data;
diff --git a/win/inspircd_namedpipe.cpp b/win/inspircd_namedpipe.cpp
index 367243660..93d7c423a 100644
--- a/win/inspircd_namedpipe.cpp
+++ b/win/inspircd_namedpipe.cpp
@@ -131,7 +131,7 @@ IPC::IPC(InspIRCd* Srv) : ServerInstance(Srv)
{
/* The IPC pipe is threaded */
thread = new IPCThread(Srv);
- Srv->Threads->Create(thread);
+ Srv->Threads->Start(thread);
}
void IPC::Check()