Start work on a SHM implementation in Go

This commit is contained in:
Kovid Goyal
2022-12-20 09:15:26 +05:30
parent 7a1140cd03
commit d01d5297b8
9 changed files with 458 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package shm
import (
"fmt"
)
var _ = fmt.Print
const SHM_DIR = "/dev/shm"
const SHM_NAME_MAX = 1023