mirror of https://github.com/hslam/ipc.git
24 lines
540 B
Go
24 lines
540 B
Go
// 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/shm"
|
|
)
|
|
|
|
// Shmgetat calls the shmget and shmat system call.
|
|
func Shmgetat(key int, size int, shmFlg int) (int, []byte, error) {
|
|
return shm.GetAt(key, size, shmFlg)
|
|
}
|
|
|
|
// Shmdt calls the shmdt system call.
|
|
func Shmdt(b []byte) error {
|
|
return shm.Dt(b)
|
|
}
|
|
|
|
// Shmrm removes the shm with the given id.
|
|
func Shmrm(shmid int) error {
|
|
return shm.Remove(shmid)
|
|
}
|