Searched refs:msgsz (Results 1 – 4 of 4) sorted by relevance
/third_party/ltp/include/ |
D | tst_safe_sysv_ipc.h | 19 size_t msgsz, int msgflg); 20 #define SAFE_MSGSND(msqid, msgp, msgsz, msgflg) \ argument 21 safe_msgsnd(__FILE__, __LINE__, (msqid), (msgp), (msgsz), (msgflg)) 24 size_t msgsz, long msgtyp, int msgflg); 25 #define SAFE_MSGRCV(msqid, msgp, msgsz, msgtyp, msgflg) \ argument 26 safe_msgrcv(__FILE__, __LINE__, (msqid), (msgp), (msgsz), (msgtyp), (msgflg))
|
/third_party/ltp/lib/ |
D | tst_safe_sysv_ipc.c | 83 size_t msgsz, int msgflg) in safe_msgsnd() argument 87 rval = msgsnd(msqid, msgp, msgsz, msgflg); in safe_msgsnd() 91 "msgsnd(%i, %p, %zu, %x) failed", msqid, msgp, msgsz, in safe_msgsnd() 96 msqid, msgp, msgsz, msgflg, rval); in safe_msgsnd() 103 size_t msgsz, long msgtyp, int msgflg) in safe_msgrcv() argument 107 rval = msgrcv(msqid, msgp, msgsz, msgtyp, msgflg); in safe_msgrcv() 112 msqid, msgp, msgsz, msgtyp, msgflg); in safe_msgrcv() 116 msqid, msgp, msgsz, msgtyp, msgflg, rval); in safe_msgrcv()
|
/third_party/ltp/testcases/kernel/syscalls/ipc/msgsnd/ |
D | msgsnd02.c | 49 int msgsz; member 64 TST_EXP_FAIL(msgsnd(*tc->id, tc->buffer, tc->msgsz, 0), tc->exp_err, in verify_msgsnd() 65 "msgsnd(%i, %p, %i, 0)", *tc->id, tc->buffer, tc->msgsz); in verify_msgsnd()
|
/third_party/ltp/testcases/kernel/syscalls/ipc/msgrcv/ |
D | msgrcv02.c | 48 int msgsz; member 66 TST_EXP_FAIL2(msgrcv(*tc->id, tc->buffer, tc->msgsz, tc->msgtyp, tc->msgflag), tc->exp_err, in verify_msgrcv() 67 "msgrcv(%i, %p, %i, %ld, %i)", *tc->id, tc->buffer, tc->msgsz, tc->msgtyp, tc->msgflag); in verify_msgrcv()
|