From 7721a4de678967c527c4887e036f7a93722296ed Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 20 Aug 2008 10:27:46 +0000 Subject: Checks to make sure that WMI initialises, if it doesnt we return -1 for CPU percentage git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10180 e03df62e-2008-0410-955e-edbf42e46eb7 --- win/inspircd_namedpipe.cpp | 21 +++++++++++---------- win/inspircd_win32wrapper.cpp | 4 ++-- 2 files changed, 13 insertions(+), 12 deletions(-) (limited to 'win') diff --git a/win/inspircd_namedpipe.cpp b/win/inspircd_namedpipe.cpp index f86af73e2..06649d103 100644 --- a/win/inspircd_namedpipe.cpp +++ b/win/inspircd_namedpipe.cpp @@ -8,7 +8,8 @@ IPCThread::IPCThread(InspIRCd* Instance) : Thread(), ServerInstance(Instance) { - initwmi(); + if (!initwmi()) + ServerInstance->Logs->Log("IPC", DEBUG, "Could not initialise WMI. CPU percantage reports will not be available."); } IPCThread::~IPCThread() @@ -23,15 +24,15 @@ void IPCThread::Run() while (GetExitFlag() == false) { Pipe = CreateNamedPipe (Pipename, - PIPE_ACCESS_DUPLEX, // read/write access - PIPE_TYPE_MESSAGE | // message type pipe - PIPE_READMODE_MESSAGE | // message-read mode - PIPE_WAIT, // blocking mode - PIPE_UNLIMITED_INSTANCES, // max. instances - MAXBUF, // output buffer size - MAXBUF, // input buffer size - 1000, // client time-out - NULL); // no security attribute + PIPE_ACCESS_DUPLEX, // read/write access + PIPE_TYPE_MESSAGE | // message type pipe + PIPE_READMODE_MESSAGE | // message-read mode + PIPE_WAIT, // blocking mode + PIPE_UNLIMITED_INSTANCES, // max. instances + MAXBUF, // output buffer size + MAXBUF, // input buffer size + 1000, // client time-out + NULL); // no security attribute if (Pipe == INVALID_HANDLE_VALUE) { diff --git a/win/inspircd_win32wrapper.cpp b/win/inspircd_win32wrapper.cpp index 37da9c0b3..62d9ff329 100644 --- a/win/inspircd_win32wrapper.cpp +++ b/win/inspircd_win32wrapper.cpp @@ -753,7 +753,7 @@ int getcpu() &pEnumerator); if (FAILED(hres)) - return 0; + return -1; IWbemClassObject *pclsObj = NULL; ULONG uReturn = 0; @@ -790,5 +790,5 @@ int getcpu() } pEnumerator->Release(); pclsObj->Release(); - return 0; + return -1; } -- cgit v1.2.3