Ignore:
Timestamp:
Jul 31, 2017, 1:59:52 PM (7 years ago)
Author:
alain
Message:

Several modifs in the generic scheduler and in the hal_context to
fix the context switch mechanism.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/kern/printk.h

    r279 r296  
    6767 * This function displays a formated string on the kernel terminal TXT0,
    6868 * using a busy waiting policy: It calls directly the relevant TXT driver,
    69  * after taking the lock for exclusive access to the TXT0 terminal.
     69 * after taking the TXT0 lock.
    7070 **********************************************************************************
    7171 * @ format     : formated string.
    7272 *********************************************************************************/
    7373void printk( char* format, ... );
     74
     75/**********************************************************************************
     76 * This function displays a formated string on the kernel terminal TXT0,
     77 * using a busy waiting policy: It calls directly the relevant TXT driver,
     78 * without taking the TXT0 lock.
     79 **********************************************************************************
     80 * @ format     : formated string.
     81 *********************************************************************************/
     82void nolock_printk( char* format, ... );
    7483
    7584/**********************************************************************************
Note: See TracChangeset for help on using the changeset viewer.