sem.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_SEM_H
  2. #define _LINUX_SEM_H
  3. #include <linux/ipc.h>
  4. /* semop flags */
  5. #define SEM_UNDO        0x1000  /* undo the operation on exit */
  6. /* semctl Command Definitions. */
  7. #define GETPID  11       /* get sempid */
  8. #define GETVAL  12       /* get semval */
  9. #define GETALL  13       /* get all semval's */
  10. #define GETNCNT 14       /* get semncnt */
  11. #define GETZCNT 15       /* get semzcnt */
  12. #define SETVAL  16       /* set semval */
  13. #define SETALL  17       /* set all semval's */
  14. /* ipcs ctl cmds */
  15. #define SEM_STAT 18
  16. #define SEM_INFO 19
  17. /* Obsolete, used only for backwards compatibility and libc5 compiles */
  18. struct semid_ds {
  19. struct ipc_perm sem_perm; /* permissions .. see ipc.h */
  20. __kernel_time_t sem_otime; /* last semop time */
  21. __kernel_time_t sem_ctime; /* last change time */
  22. struct sem *sem_base; /* ptr to first semaphore in array */
  23. struct sem_queue *sem_pending; /* pending operations to be processed */
  24. struct sem_queue **sem_pending_last; /* last pending operation */
  25. struct sem_undo *undo; /* undo requests on this array */
  26. unsigned short sem_nsems; /* no. of semaphores in array */
  27. };
  28. /* Include the definition of semid64_ds */
  29. #include <asm/sembuf.h>
  30. /* semop system calls takes an array of these. */
  31. struct sembuf {
  32. unsigned short  sem_num; /* semaphore index in array */
  33. short sem_op; /* semaphore operation */
  34. short sem_flg; /* operation flags */
  35. };
  36. /* arg for semctl system calls. */
  37. union semun {
  38. int val; /* value for SETVAL */
  39. struct semid_ds *buf; /* buffer for IPC_STAT & IPC_SET */
  40. unsigned short *array; /* array for GETALL & SETALL */
  41. struct seminfo *__buf; /* buffer for IPC_INFO */
  42. void *__pad;
  43. };
  44. struct  seminfo {
  45. int semmap;
  46. int semmni;
  47. int semmns;
  48. int semmnu;
  49. int semmsl;
  50. int semopm;
  51. int semume;
  52. int semusz;
  53. int semvmx;
  54. int semaem;
  55. };
  56. #define SEMMNI  128             /* <= IPCMNI  max # of semaphore identifiers */
  57. #define SEMMSL  250             /* <= 8 000 max num of semaphores per id */
  58. #define SEMMNS  (SEMMNI*SEMMSL) /* <= INT_MAX max # of semaphores in system */
  59. #define SEMOPM  32         /* <= 1 000 max num of ops per semop call */
  60. #define SEMVMX  32767           /* <= 32767 semaphore maximum value */
  61. #define SEMAEM  SEMVMX          /* adjust on exit max value */
  62. /* unused */
  63. #define SEMUME  SEMOPM          /* max num of undo entries per process */
  64. #define SEMMNU  SEMMNS          /* num of undo structures system wide */
  65. #define SEMMAP  SEMMNS          /* # of entries in semaphore map */
  66. #define SEMUSZ  20 /* sizeof struct sem_undo */
  67. #ifdef __KERNEL__
  68. /* One semaphore structure for each semaphore in the system. */
  69. struct sem {
  70. int semval; /* current value */
  71. int sempid; /* pid of last operation */
  72. };
  73. /* One sem_array data structure for each set of semaphores in the system. */
  74. struct sem_array {
  75. struct kern_ipc_perm sem_perm; /* permissions .. see ipc.h */
  76. time_t sem_otime; /* last semop time */
  77. time_t sem_ctime; /* last change time */
  78. struct sem *sem_base; /* ptr to first semaphore in array */
  79. struct sem_queue *sem_pending; /* pending operations to be processed */
  80. struct sem_queue **sem_pending_last; /* last pending operation */
  81. struct sem_undo *undo; /* undo requests on this array */
  82. unsigned long sem_nsems; /* no. of semaphores in array */
  83. };
  84. /* One queue for each sleeping process in the system. */
  85. struct sem_queue {
  86. struct sem_queue * next;  /* next entry in the queue */
  87. struct sem_queue ** prev;  /* previous entry in the queue, *(q->prev) == q */
  88. struct task_struct* sleeper; /* this process */
  89. struct sem_undo * undo;  /* undo structure */
  90. int     pid;  /* process id of requesting process */
  91. int     status;  /* completion status of operation */
  92. struct sem_array * sma;  /* semaphore array for operations */
  93. int id;  /* internal sem id */
  94. struct sembuf * sops;  /* array of pending operations */
  95. int nsops;  /* number of operations */
  96. int alter;  /* operation will alter semaphore */
  97. };
  98. /* Each task has a list of undo requests. They are executed automatically
  99.  * when the process exits.
  100.  */
  101. struct sem_undo {
  102. struct sem_undo * proc_next; /* next entry on this process */
  103. struct sem_undo * id_next; /* next entry on this semaphore set */
  104. int semid; /* semaphore set identifier */
  105. short * semadj; /* array of adjustments, one per semaphore */
  106. };
  107. asmlinkage long sys_semget (key_t key, int nsems, int semflg);
  108. asmlinkage long sys_semop (int semid, struct sembuf *sops, unsigned nsops);
  109. asmlinkage long sys_semctl (int semid, int semnum, int cmd, union semun arg);
  110. #endif /* __KERNEL__ */
  111. #endif /* _LINUX_SEM_H */