CleanupWhitespace

removed spaces at end of line

replaced tabs with spaces
This commit is contained in:
2020-05-20 14:48:09 -07:00
committed by Michael Davidsaver
parent 055223dbe4
commit 36a8b51d8e
610 changed files with 19733 additions and 19733 deletions
+5 -5
View File
@@ -8,8 +8,8 @@
\*************************************************************************/
/* epicsMutexTest.c */
/*
* Author: Marty Kraimer Date: 26JAN2000
/*
* Author: Marty Kraimer Date: 26JAN2000
* Jeff Hill (added mutex performance test )
*/
@@ -165,7 +165,7 @@ inline void tenQuadRecursiveLockPairsSquared ( epicsMutex & mutex )
void epicsMutexPerformance ()
{
epicsMutex mutex;
unsigned i;
unsigned i;
// test a single lock pair
epicsTime begin = epicsTime::getMonotonic ();
@@ -206,7 +206,7 @@ struct verifyTryLock {
extern "C" void verifyTryLockThread ( void *pArg )
{
struct verifyTryLock *pVerify =
struct verifyTryLock *pVerify =
( struct verifyTryLock * ) pArg;
testOk1(epicsMutexTryLock(pVerify->mutex) == epicsMutexLockTimeout);
@@ -222,7 +222,7 @@ void verifyTryLock ()
testOk1(epicsMutexTryLock(verify.mutex) == epicsMutexLockOK);
epicsThreadCreate ( "verifyTryLockThread", 40,
epicsThreadCreate ( "verifyTryLockThread", 40,
epicsThreadGetStackSize(epicsThreadStackSmall),
verifyTryLockThread, &verify );