Changeset 296 for trunk/kernel/kern/printk.h
- Timestamp:
- Jul 31, 2017, 1:59:52 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/printk.h
r279 r296 67 67 * This function displays a formated string on the kernel terminal TXT0, 68 68 * 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. 70 70 ********************************************************************************** 71 71 * @ format : formated string. 72 72 *********************************************************************************/ 73 73 void 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 *********************************************************************************/ 82 void nolock_printk( char* format, ... ); 74 83 75 84 /**********************************************************************************
Note: See TracChangeset
for help on using the changeset viewer.