cmdq_struct.h 282 B

1234567891011121314
  1. #ifndef __CMDQ_STRUCT_H__
  2. #define __CMDQ_STRUCT_H__
  3. #include <linux/list.h>
  4. #include <linux/spinlock.h>
  5. typedef struct cmdqFileNodeStruct {
  6. pid_t userPID;
  7. pid_t userTGID;
  8. struct list_head taskList;
  9. spinlock_t nodeLock;
  10. } cmdqFileNodeStruct;
  11. #endif /* __CMDQ_STRUCT_H__ */