mt_sched_ioctl.h 369 B

1234567891011121314151617
  1. #ifndef _MT_SCHED_IOCTL_H
  2. #define _MT_SCHED_IOCTL_H
  3. struct ioctl_arg {
  4. pid_t pid;
  5. unsigned int len;
  6. unsigned long *mask;
  7. unsigned long *mt_mask;
  8. };
  9. #define IOC_MAGIC ('\x66')
  10. #define IOCTL_SETAFFINITY _IOW(IOC_MAGIC, 0, struct ioctl_arg)
  11. #define IOCTL_EXITAFFINITY _IOW(IOC_MAGIC, 1, pid_t)
  12. #define IOCTL_GETAFFINITY _IOR(IOC_MAGIC, 2, struct ioctl_arg)
  13. #endif