printk 第二个输出
当我 printk(KERN_INFO, ...) 时,我得到如下内容:
<6>[116584.000183] ...
方括号之间的数字到底是多少?
When I printk(KERN_INFO, ...), I get something like this:
<6>[116584.000183] ...
What is the number between the square brackets exactly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
自启动以来的秒数。您可以通过内核配置中的
CONFIG_PRINTK_TIME
变量来控制是否显示此信息。Seconds since startup. You can control whether this is shown with the
CONFIG_PRINTK_TIME
variable in kernel config.这是一个微秒分辨率的时间戳。请参阅
printk
源。It's a timestamp with microsecond resolution. See the
printk
source.