• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/

Lines Matching defs:sma

1019  *	Allocate and attach a security structure to the sma->sem_perm.security
1022 * @sma contains the semaphore structure
1026 * @sma contains the semaphore structure.
1032 * @sma contains the semaphore structure.
1037 * performed on the semaphore @sma. The @sma may be NULL, e.g. for
1039 * @sma contains the semaphore structure. May be NULL.
1044 * semaphore set @sma. If the @alter flag is nonzero, the semaphore set
1046 * @sma contains the semaphore structure.
1309 int (*sem_alloc_security) (struct sem_array * sma);
1310 void (*sem_free_security) (struct sem_array * sma);
1311 int (*sem_associate) (struct sem_array * sma, int semflg);
1312 int (*sem_semctl) (struct sem_array * sma, int cmd);
1313 int (*sem_semop) (struct sem_array * sma,
2061 static inline int security_sem_alloc (struct sem_array *sma)
2063 return security_ops->sem_alloc_security (sma);
2066 static inline void security_sem_free (struct sem_array *sma)
2068 security_ops->sem_free_security (sma);
2071 static inline int security_sem_associate (struct sem_array * sma, int semflg)
2073 return security_ops->sem_associate (sma, semflg);
2076 static inline int security_sem_semctl (struct sem_array * sma, int cmd)
2078 return security_ops->sem_semctl(sma, cmd);
2081 static inline int security_sem_semop (struct sem_array * sma,
2085 return security_ops->sem_semop(sma, sops, nsops, alter);
2724 static inline int security_sem_alloc (struct sem_array *sma)
2729 static inline void security_sem_free (struct sem_array *sma)
2732 static inline int security_sem_associate (struct sem_array * sma, int semflg)
2737 static inline int security_sem_semctl (struct sem_array * sma, int cmd)
2742 static inline int security_sem_semop (struct sem_array * sma,