1. NAME

console_unlock - unlock the console system

2. SYNOPSIS

void console_unlock( void );

3. ARGUMENTS

void
    no arguments

4. DESCRIPTION

Releases the console_lock which the caller holds on the console system and the console driver list.

While the console_lock was held, console output may have been buffered by printk. If this is the case, console_unlock; emits the output prior to releasing the lock.

If there is output waiting, we wake /dev/kmsg and syslog users.

console_unlock; may be called from any context.

5. COPYRIGHT