// Copyright (c) 2020 Meng Huang (mhboy@outlook.com) // This package is licensed under a MIT license that can be found in the LICENSE file. package ipc import ( "github.com/hslam/msg" ) // Msgget calls the msgget system call. func Msgget(key int, msgflg int) (int, error) { return msg.Get(key, msgflg) } // Msgsnd calls the msgsnd system call. func Msgsnd(msgid int, msgp uintptr, msgsz int, msgflg int) error { return msg.Snd(msgid, msgp, msgsz, msgflg) } // Msgrcv calls the msgrcv system call. func Msgrcv(msgid int, msgp uintptr, msgsz int, msgtyp uint, msgflg int) (int, error) { return msg.Rcv(msgid, msgp, msgsz, msgtyp, msgflg) } // Msgsend calls the msgsnd system call. func Msgsend(msgid int, msgType uint, msgText []byte, flags int) error { return msg.Send(msgid, msgType, msgText, flags) } // Msgreceive calls the msgrcv system call. func Msgreceive(msgid int, msgType uint, flags int) ([]byte, error) { return msg.Receive(msgid, msgType, flags) } // Msgrm removes the shm with the given id. func Msgrm(msgid int) error { return msg.Remove(msgid) }