Skip to content

Repository files navigation

shm

Build Status

shm is Golang shared memory library.

Example

w, _:=shm.Create("shm_name", 256)
deferw.Close()
r, _:=shm.Open("shm_name", 256)
deferr.Close()
wbuf:= []byte("Hello World")
w.Write(wbuf)
rbuf:=make([]byte, len(wbuf))
r.Read(rbuf)
// rbuf == wbuf

About

Golang shared memory library

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages