summaryrefslogtreecommitdiff
path: root/src/threadengines/threadengine_pthread.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-02-08 13:10:09 +0100
committerAttila Molnar <attilamolnar@hush.com>2014-02-08 13:10:09 +0100
commit2cf4b614e6c23bfc6d47da2ec4b1932ee2f62cf0 (patch)
tree68b62cf115b9716cb17adbe5b598878c8c438c78 /src/threadengines/threadengine_pthread.cpp
parent5b6ae9c5427b32f5bacba592fc08e1f70009aee4 (diff)
Change SocketEngine functions that do not require an instance to be static
Diffstat (limited to 'src/threadengines/threadengine_pthread.cpp')
-rw-r--r--src/threadengines/threadengine_pthread.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/threadengines/threadengine_pthread.cpp b/src/threadengines/threadengine_pthread.cpp
index e16e401f3..ebd11d487 100644
--- a/src/threadengines/threadengine_pthread.cpp
+++ b/src/threadengines/threadengine_pthread.cpp
@@ -81,7 +81,7 @@ class ThreadSignalSocket : public EventHandler
~ThreadSignalSocket()
{
ServerInstance->SE->DelFd(this);
- ServerInstance->SE->Close(GetFd());
+ SocketEngine::Close(GetFd());
}
void Notify()
@@ -123,7 +123,7 @@ class ThreadSignalSocket : public EventHandler
parent(p), send_fd(sendfd)
{
SetFd(recvfd);
- ServerInstance->SE->NonBlocking(fd);
+ SocketEngine::NonBlocking(fd);
ServerInstance->SE->AddFd(this, FD_WANT_FAST_READ | FD_WANT_NO_WRITE);
}
@@ -131,7 +131,7 @@ class ThreadSignalSocket : public EventHandler
{
close(send_fd);
ServerInstance->SE->DelFd(this);
- ServerInstance->SE->Close(GetFd());
+ SocketEngine::Close(GetFd());
}
void Notify()