dropped "c" prefix from class names

This commit is contained in:
Nick Bolton
2014-11-11 13:51:47 +00:00
parent f6c05e7635
commit e8e156f0e2
382 changed files with 7430 additions and 7423 deletions

View File

@@ -21,21 +21,21 @@
#include "arch/win32/ArchMultithreadWindows.h"
//
// CArchSleepWindows
// ArchSleepWindows
//
CArchSleepWindows::CArchSleepWindows()
ArchSleepWindows::ArchSleepWindows()
{
// do nothing
}
CArchSleepWindows::~CArchSleepWindows()
ArchSleepWindows::~ArchSleepWindows()
{
// do nothing
}
void
CArchSleepWindows::sleep(double timeout)
ArchSleepWindows::sleep(double timeout)
{
ARCH->testCancelThread();
if (timeout < 0.0) {
@@ -46,7 +46,7 @@ CArchSleepWindows::sleep(double timeout)
// works if we're using the windows multithread object but
// this is windows so that's pretty certain; we'll get a
// link error if we're not, though.
CArchMultithreadWindows* mt = CArchMultithreadWindows::getInstance();
ArchMultithreadWindows* mt = ArchMultithreadWindows::getInstance();
if (mt != NULL) {
HANDLE cancelEvent = mt->getCancelEventForCurrentThread();
WaitForSingleObject(cancelEvent, (DWORD)(1000.0 * timeout));