diff -r 5e441a173c63 -r d9f1e5bfe28c kerneltest/e32test/benchmark/bm_ldd.cpp --- a/kerneltest/e32test/benchmark/bm_ldd.cpp Mon May 24 18:45:46 2010 +0100 +++ b/kerneltest/e32test/benchmark/bm_ldd.cpp Thu Jun 10 11:48:01 2010 +0100 @@ -70,7 +70,7 @@ TInt StartTimerStampOverhead(); TInt RequestTimerStampOverhead(); // iRequestInterrupt() implementation - TInt SetAbsPrioirty(TInt aThreadHandle, TInt aNewPrio, TInt* aOldPrio); + TInt SetAbsPriority(TInt aThreadHandle, TInt aNewPrio, TInt* aOldPrio); DMutex* iLock; // Shall be acquired by anyone who access the object's writable state. @@ -533,9 +533,9 @@ // // -// The implmentation of RBMDriver::SetAbsPrioirty() call. +// The implementation of RBMDriver::SetAbsPriority() call. // -TInt DBMLChannel::SetAbsPrioirty(TInt aThreadHandle, TInt aNewPrio, TInt* aOldPrio) +TInt DBMLChannel::SetAbsPriority(TInt aThreadHandle, TInt aNewPrio, TInt* aOldPrio) { NKern::LockSystem(); // @@ -690,7 +690,7 @@ TInt newPrio; TInt oldPrio; umemget(&newPrio, a2, sizeof(newPrio)); - r = SetAbsPrioirty((TInt) a1, newPrio, &oldPrio); + r = SetAbsPriority((TInt) a1, newPrio, &oldPrio); umemput(a2, &oldPrio, sizeof(oldPrio)); break; }