comparison kernel/src/schedule.c3 @ 359:b4ac28efcdf4

Reorganize files
author Windel Bouwman
date Fri, 14 Mar 2014 15:41:55 +0100
parents kernel/schedule.c3@2e7f55319858
children 6ae782a085e0
comparison
equal deleted inserted replaced
358:5ef1cb1bb54f 359:b4ac28efcdf4
1
2 module scheduler;
3
4 import process;
5
6 var process.process_t *current;
7
8 function void executeNext()
9 {
10 var process.process_t *old;
11
12 if (old != current)
13 {
14 //execute(current);
15 }
16 }
17