Home
last modified time | relevance | path

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

/freebsd/sys/compat/linux/
H A Dlinux_ipc.c649 l_long lmtype; in linux_msgsnd() local
655 if ((error = copyin(msgp, &lmtype, sizeof(lmtype))) != 0) in linux_msgsnd()
657 mtype = (long)lmtype; in linux_msgsnd()
659 (const char *)msgp + sizeof(lmtype), in linux_msgsnd()
668 l_long lmtype; in linux_msgrcv() local
675 (char *)msgp + sizeof(lmtype), args->msgsz, in linux_msgrcv()
678 lmtype = (l_long)mtype; in linux_msgrcv()
679 return (copyout(&lmtype, msgp, sizeof(lmtype))); in linux_msgrcv()