Home
last modified time | relevance | path

Searched refs:host_mb (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/linux-user/
H A Dsyscall.c4315 struct msgbuf *host_mb; in do_msgsnd() local
4324 host_mb = g_try_malloc(msgsz + sizeof(long)); in do_msgsnd()
4325 if (!host_mb) { in do_msgsnd()
4329 host_mb->mtype = (abi_long) tswapal(target_mb->mtype); in do_msgsnd()
4330 memcpy(host_mb->mtext, target_mb->mtext, msgsz); in do_msgsnd()
4333 ret = get_errno(safe_msgsnd(msqid, host_mb, msgsz, msgflg)); in do_msgsnd()
4339 host_mb)); in do_msgsnd()
4342 host_mb, 0)); in do_msgsnd()
4346 g_free(host_mb); in do_msgsnd()
4372 struct msgbuf *host_mb; in do_msgrcv() local
[all …]