fixed warnings
This commit is contained in:
@@ -54,7 +54,7 @@ typedef struct epicsMutexOSD {
|
||||
} os;
|
||||
} epicsMutexOSD;
|
||||
|
||||
static char thisIsNT = 0;
|
||||
static BOOL thisIsNT = FALSE;
|
||||
static LONG weHaveInitialized = 0;
|
||||
|
||||
/*
|
||||
|
||||
@@ -100,7 +100,7 @@ BOOL WINAPI DllMain (
|
||||
HANDLE hModule, DWORD dwReason, LPVOID lpReserved )
|
||||
{
|
||||
static DWORD dllHandleIndex;
|
||||
HMODULE dllHandle;
|
||||
HMODULE dllHandle = 0;
|
||||
BOOL success = TRUE;
|
||||
|
||||
switch ( dwReason )
|
||||
|
||||
@@ -14,14 +14,13 @@
|
||||
|
||||
#include <new>
|
||||
#include <iostream>
|
||||
#include <cstdio>
|
||||
#if defined(__GNUC__) && (__GNUC__<2 || (__GNUC__==2 && __GNUC_MINOR__<=96))
|
||||
#include <climits>
|
||||
#else
|
||||
#include <limits>
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "epicsUnitTest.h"
|
||||
#include "epicsThread.h"
|
||||
#include "testMain.h"
|
||||
|
||||
@@ -131,7 +131,7 @@ public:
|
||||
bool sharingOK () const;
|
||||
unsigned threadPriority () const;
|
||||
protected:
|
||||
virtual ~timerQueueActive () = 0;
|
||||
~timerQueueActive ();
|
||||
private:
|
||||
timerQueue queue;
|
||||
epicsEvent rescheduleEvent;
|
||||
|
||||
Reference in New Issue
Block a user