cmdq_struct.h 271 B

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