suse man page for printk

Query: printk

OS: suse

Section: 9

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

PRINTK(9)							   Driver Basics							 PRINTK(9)

NAME
printk - print a kernel message
SYNOPSIS
int printk(const char * fmt, ...);
ARGUMENTS
fmt format string ... variable arguments
DESCRIPTION
This is printk. It can be called from any context. We want it to work. We try to grab the console_sem. If we succeed, it's easy - we log the output and call the console drivers. If we fail to get the semaphore we place the output into the log buffer and return. The current holder of the console_sem will notice the new output in release_console_sem and will send it to the consoles before releasing the semaphore. One effect of this deferred printing is that code which calls printk and then changes console_loglevel may break. This is because console_loglevel is inspected when the actual printing occurs.
SEE ALSO
printf(3) See the vsnprintf documentation for format string extensions over C99.
COPYRIGHT
Kernel Hackers Manual 2.6. July 2010 PRINTK(9)
Related Man Pages
syslog(2) - redhat
trace_printk(9) - centos
klogctl(2) - mojave
klogctl(2) - ultrix
klogctl(2) - hpux
Similar Topics in the Unix Linux Community
Kernel module - How to test if file doesn't exist
Kernel crash - NULL pointer dereference when calling DEVICE_WRITE from KTHREAD in a USB device drive
Cause PCIe error callbacks using AER injection
Measuring the correctness of ndelay() function.
Meaning of /var/log/messages