Symbol: sembuf
usr/src/cmd/fs.d/ufs/volcopy/volcopy.c
87
struct sembuf Sem_buf, /* semaphore operation buffer */
usr/src/cmd/sendmail/libsm/sem.c
118
struct sembuf semops[1];
usr/src/cmd/sendmail/libsm/sem.c
157
struct sembuf semops[1];
usr/src/cmd/truss/expound.c
2359
struct sembuf sembuf;
usr/src/cmd/truss/expound.c
2368
for (; nsops > 0 && !interrupt; --nsops, offset += sizeof (sembuf)) {
usr/src/cmd/truss/expound.c
2369
if (Pread(Proc, &sembuf, sizeof (sembuf), offset) !=
usr/src/cmd/truss/expound.c
2370
sizeof (sembuf))
usr/src/cmd/truss/expound.c
2375
sembuf.sem_num,
usr/src/cmd/truss/expound.c
2376
sembuf.sem_op);
usr/src/cmd/truss/expound.c
2378
if (sembuf.sem_flg == 0)
usr/src/cmd/truss/expound.c
2380
else if ((str = semflags(pri, sembuf.sem_flg)) != NULL)
usr/src/cmd/truss/expound.c
2383
(void) printf("0%.6o\n", sembuf.sem_flg);
usr/src/lib/libc/port/sys/semsys.c
127
semop(int semid, struct sembuf *sops, size_t nsops)
usr/src/lib/libc/port/sys/semsys.c
139
semtimedop(int semid, struct sembuf *sops, size_t nsops,
usr/src/lib/libima/common/ima-lib.c
360
struct sembuf sem_b;
usr/src/lib/libima/common/ima-lib.c
371
struct sembuf sem_b;
usr/src/lib/libima/common/sunima-lib.c
131
struct sembuf sem_b;
usr/src/lib/libima/common/sunima-lib.c
142
struct sembuf sem_b;
usr/src/uts/common/sys/sem.h
109
int semop(int, struct sembuf *, size_t);
usr/src/uts/common/sys/sem.h
111
int semtimedop(int, struct sembuf *, size_t, const struct timespec *);
usr/src/uts/common/syscall/sem.c
1203
error = semop((int)a1, (struct sembuf *)a2, (size_t)a3, 0);
usr/src/uts/common/syscall/sem.c
1209
error = semop((int)a1, (struct sembuf *)a2, (size_t)a3,
usr/src/uts/common/syscall/sem.c
288
sem_rollback(ksemid_t *sp, struct sembuf *op, int n, struct sem_undo *undo)
usr/src/uts/common/syscall/sem.c
863
semop(int semid, struct sembuf *sops, size_t nsops, timespec_t *timeout)
usr/src/uts/common/syscall/sem.c
867
struct sembuf *op; /* ptr to operation */
usr/src/uts/common/syscall/sem.c
871
struct sembuf *uops; /* ptr to copy of user ops */
usr/src/uts/common/syscall/sem.c
872
struct sembuf x_sem; /* avoid kmem_alloc's */