Files
codezero/tasks/test0/include/tests.h
Bahadir Balban 1ea21d84bd Updated test0 with a forktest. Fixed timeslices. Updated kmem usage calculations.
- test0 now forks 16 tasks that each modify a global variable.
- scheduler now gives 1/10th of a second per task. It also does not increase timeslice
  of a task that has scheduled.
- When a memory is granted to the kernel, the distribution of this memory to memcaches
  was calculated in a complicated way. This is now simplified.
2008-09-17 15:19:37 +03:00

14 lines
232 B
C

#ifndef __TEST0_TESTS_H__
#define __TEST0_TESTS_H__
#define __TASKNAME__ "test0"
int shmtest(void);
int forktest(void);
int mmaptest(void);
int dirtest(void);
int fileio(void);
int fileio2(void);
#endif /* __TEST0_TESTS_H__ */