Subversion Repositories HelenOS-historic

Compare Revisions

Regard whitespace Rev 1657 → Rev 1658

/kernel/trunk/test/mm/falloc2/test.c
58,6 → 58,8
__address * frames = (__address *) malloc(MAX_FRAMES * sizeof(__address), FRAME_ATOMIC);
ASSERT(frames != NULL);
 
thread_detach(THREAD);
 
for (run = 0; run < THREAD_RUNS; run++) {
for (order = 0; order <= MAX_ORDER; order++) {
printf("Thread #%d (cpu%d): Allocating %d frames blocks ... \n", THREAD->tid, CPU->id, 1 << order);
/kernel/trunk/test/mm/slab1/test.c
113,6 → 113,8
int offs = (int)(__native) data;
int i,j;
 
thread_detach(THREAD);
printf("Starting thread #%d...\n",THREAD->tid);
for (j=0; j<10; j++) {
for (i=0; i<THR_MEM_COUNT; i++)
/kernel/trunk/test/mm/slab2/test.c
126,6 → 126,8
{
void *data=NULL, *new;
 
thread_detach(THREAD);
 
mutex_lock(&starter_mutex);
condvar_wait(&thread_starter,&starter_mutex);
mutex_unlock(&starter_mutex);