Categorygithub.com/hidez8891/shm
repositorypackage
0.0.0-20200313135933-0ec4df5f28c7
Repository: https://github.com/hidez8891/shm.git
Documentation: pkg.go.dev

# README

shm

Build Status

shm is Golang shared memory library.

Example

w, _ := shm.Create("shm_name", 256)
defer w.Close()

r, _ := shm.Open("shm_name", 256)
defer r.Close()

wbuf := []byte("Hello World")
w.Write(wbuf)

rbuf := make([]byte, len(wbuf))
r.Read(rbuf)
// rbuf == wbuf