equal
deleted
inserted
replaced
346 { |
346 { |
347 CActiveScheduler::Add(this); |
347 CActiveScheduler::Add(this); |
348 TBuf<16> name; |
348 TBuf<16> name; |
349 name = _L("TESTER-"); |
349 name = _L("TESTER-"); |
350 name.AppendNum(aIdx); |
350 name.AppendNum(aIdx); |
351 test(iThread.Create(name, ThreadFunction, 0x1000, NULL, this) == KErrNone); |
351 test(iThread.Create(name, ThreadFunction, 0x2000, NULL, this) == KErrNone); |
352 iThread.SetPriority(EPriorityLess); |
352 iThread.SetPriority(EPriorityLess); |
353 iThread.Logon(iStatus); |
353 iThread.Logon(iStatus); |
354 SetActive(); |
354 SetActive(); |
355 iThread.Resume(); |
355 iThread.Resume(); |
356 } |
356 } |