Changeset a212307 in mainline
- Timestamp:
- 2009-03-02T17:22:11Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d8fcfc0
- Parents:
- 5d9d9a9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/main/kinit.c
r5d9d9a9 ra212307 203 203 204 204 /* 205 * Run user tasks with reasonable delays 205 * Run user tasks with small delays 206 * to avoid intermixed klog output. 207 * 208 * TODO: This certainly does not guarantee 209 * anything, it just works in most of the 210 * cases. Some better way how to achieve 211 * nice klog output should be found. 206 212 */ 207 213 for (i = 0; i < init.cnt; i++) { 208 214 if (programs[i].task != NULL) { 209 thread_usleep(50000);210 215 program_ready(&programs[i]); 216 thread_usleep(10000); 211 217 } 212 218 }
Note:
See TracChangeset
for help on using the changeset viewer.