pprriinnttff() -- Accessible Kernel Routine

vvooiidd
pprriinnttff(_f_o_r_m_a_t, _a_r_g, ... )
cchhaarr *_f_o_r_m_a_t;

The kernel's  version of pprriinnttff()  is a simplified version  of the function
found in  the standard C  library.  This version  recognizes the formatting
conversions %, cc,  dd, oo, pp, rr, ss, uu, xx, DD,  OO, UU, and XX. It also recognizes
the  length modifier  ll. It  does not  recognize left  justification, field
widths, or zero padding.  For details on each conversion specification, see
the Lexicon entry for the standard-I/O (STDIO) pprriinnttff() library function.

_S_e_e _A_l_s_o
aacccceessssiibbllee kkeerrnneell rroouuttiinneess, pprriinnttff()

_N_o_t_e_s
Note that  unlike the library version of this  function, the kernel version
of  pprriinnttff() is  synchronous; that  is,  it does  not wait  until the  next
context switch before it prints your message.

