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.c

    r279 r296  
    401401}
    402402
     403////////////////////////////////////////
     404void nolock_printk( char * format , ...)
     405{
     406    va_list       args;
     407
     408    // call kernel_printf on TXT0, in busy waiting mode
     409    va_start( args , format );
     410    kernel_printf( 0 , 1 , format , &args );
     411    va_end( args );
     412}
     413
    403414///////////////////////////////////////////
    404415inline void assert( bool_t       condition,
Note: See TracChangeset for help on using the changeset viewer.