Changeset a212307 in mainline


Ignore:
Timestamp:
2009-03-02T17:22:11Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d8fcfc0
Parents:
5d9d9a9
Message:

lower startup sleep (with proper explanation)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/main/kinit.c

    r5d9d9a9 ra212307  
    203203       
    204204        /*
    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.
    206212         */
    207213        for (i = 0; i < init.cnt; i++) {
    208214                if (programs[i].task != NULL) {
    209                         thread_usleep(50000);
    210215                        program_ready(&programs[i]);
     216                        thread_usleep(10000);
    211217                }
    212218        }
Note: See TracChangeset for help on using the changeset viewer.