函数源码 |
Source File:kernel\trace\trace.c |
Create Date:2022-07-27 13:06:38 |
首页 | Copyright©Brick |
4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 | static int t_show( struct seq_file *m, void *v) { struct tracer *t = v; if (!t) return 0; seq_puts(m, t->name); if (t->next) seq_putc(m, ' ' ); else seq_putc(m, '\n' ); return 0; } |