mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-08 14:18:26 +02:00
Start work on a SHM implementation in Go
This commit is contained in:
12
tools/utils/shm/specific_linux.go
Normal file
12
tools/utils/shm/specific_linux.go
Normal 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
|
||||
Reference in New Issue
Block a user