Created
December 22, 2019 04:39
-
-
Save cvam0000/c985cd8c7dcc0946fc818ecfc3c0c26c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pr_emerg(fmt, ...); /* similar to printk(KERN_EMERG pr_fmt(fmt), ...); */ | |
pr_alert(fmt, ...); /* similar to printk(KERN_ALERT pr_fmt(fmt), ...); */ | |
pr_crit(fmt, ...); /* similar to printk(KERN_CRIT pr_fmt(fmt), ...); */ | |
pr_err(fmt, ...); /* similar to printk(KERN_ERR pr_fmt(fmt), ...); */ | |
pr_warning(fmt, ...); /* similar to printk(KERN_WARNING pr_fmt(fmt), ...); */ | |
pr_warn(fmt, ...); /* similar to cu printk(KERN_WARNING pr_fmt(fmt), ...); */ | |
pr_notice(fmt, ...); /* similar to printk(KERN_NOTICE pr_fmt(fmt), ...); */ | |
pr_info(fmt, ...); /* similar to printk(KERN_INFO pr_fmt(fmt), ...); */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment