1. seq_file

参考: http://blog.chinaunix.net/uid-26084833-id-1754437.html

 

seq_file的结构体定义:

struct seq_file {
char *buf;
   3:     size_t size;
   4:     size_t from;
   5:     size_t count;
   6:     loff_t index;
   7:     loff_t read_pos;
   8:     u64 version;
struct mutex lock;
struct seq_operations *op;
private;
  12: };

相关文章:

  • 2022-01-07
  • 2022-01-14
  • 2022-02-27
  • 2021-12-25
  • 2021-10-23
  • 2021-10-28
猜你喜欢
  • 2021-12-01
  • 2021-10-10
  • 2022-12-23
相关资源
相似解决方案