https://github.com/gen2brain/shm
System V shared memory functions in pure Go.
https://github.com/gen2brain/shm
shm shmget systemv sysv
Last synced: 6 months ago
JSON representation
System V shared memory functions in pure Go.
- Host: GitHub
- URL: https://github.com/gen2brain/shm
- Owner: gen2brain
- License: bsd-3-clause
- Created: 2018-03-11T22:48:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-25T10:49:08.000Z (about 1 year ago)
- Last Synced: 2025-04-01T14:17:58.043Z (6 months ago)
- Topics: shm, shmget, systemv, sysv
- Language: Go
- Size: 25.4 KB
- Stars: 133
- Watchers: 6
- Forks: 19
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
## shm
[](https://github.com/gen2brain/shm/actions)
[](https://pkg.go.dev/github.com/gen2brain/shm)
[](https://goreportcard.com/report/github.com/gen2brain/shm)`shm` implements System V shared memory functions (`shmctl`, `shmget`, `shmat`, `shmdt`) in pure Go (except `solaris`, see [#24357](https://github.com/golang/go/issues/24357)).
### Installation
go get -u github.com/gen2brain/shm
### More
For System V Message Queue IPC (i.e. `msgctl`, `msgget`, `msgrcv`, `msgsnd`) see [ipc](https://github.com/siadat/ipc).