sched.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #ifndef _SCHED_H
  2. #define _SCHED_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <features.h>
  7. #define __NEED_struct_timespec
  8. #define __NEED_pid_t
  9. #define __NEED_time_t
  10. #include <bits/alltypes.h>
  11. struct sched_param {
  12. int sched_priority;
  13. int sched_ss_low_priority;
  14. struct timespec sched_ss_repl_period;
  15. struct timespec sched_ss_init_budget;
  16. int sched_ss_max_repl;
  17. };
  18. int sched_get_priority_max(int);
  19. int sched_get_priority_min(int);
  20. int sched_getparam(pid_t, struct sched_param *);
  21. int sched_getscheduler(pid_t);
  22. int sched_rr_get_interval(pid_t, struct timespec *);
  23. int sched_setparam(pid_t, const struct sched_param *);
  24. int sched_setscheduler(pid_t, int, const struct sched_param *);
  25. int sched_yield(void);
  26. #define SCHED_OTHER 0
  27. #define SCHED_FIFO 1
  28. #define SCHED_RR 2
  29. #define SCHED_BATCH 3
  30. #define SCHED_IDLE 5
  31. #define SCHED_RESET_ON_FORK 0x40000000
  32. #ifdef _GNU_SOURCE
  33. #define CSIGNAL 0x000000ff
  34. #define CLONE_VM 0x00000100
  35. #define CLONE_FS 0x00000200
  36. #define CLONE_FILES 0x00000400
  37. #define CLONE_SIGHAND 0x00000800
  38. #define CLONE_PTRACE 0x00002000
  39. #define CLONE_VFORK 0x00004000
  40. #define CLONE_PARENT 0x00008000
  41. #define CLONE_THREAD 0x00010000
  42. #define CLONE_NEWNS 0x00020000
  43. #define CLONE_SYSVSEM 0x00040000
  44. #define CLONE_SETTLS 0x00080000
  45. #define CLONE_PARENT_SETTID 0x00100000
  46. #define CLONE_CHILD_CLEARTID 0x00200000
  47. #define CLONE_DETACHED 0x00400000
  48. #define CLONE_UNTRACED 0x00800000
  49. #define CLONE_CHILD_SETTID 0x01000000
  50. #define CLONE_NEWUTS 0x04000000
  51. #define CLONE_NEWIPC 0x08000000
  52. #define CLONE_NEWUSER 0x10000000
  53. #define CLONE_NEWPID 0x20000000
  54. #define CLONE_NEWNET 0x40000000
  55. #define CLONE_IO 0x80000000
  56. int clone (int (*)(void *), void *, int, void *, ...);
  57. int unshare(int);
  58. int setns(int, int);
  59. #endif
  60. #ifdef __cplusplus
  61. }
  62. #endif
  63. #endif