mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-21 07:55:10 +02:00
Add openbsd and dragonfly support to shm
This commit is contained in:
16
tools/utils/shm/specific_dragonfly.go
Normal file
16
tools/utils/shm/specific_dragonfly.go
Normal file
@@ -0,0 +1,16 @@
|
||||
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
|
||||
|
||||
package shm
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
)
|
||||
|
||||
var _ = fmt.Print
|
||||
|
||||
// https://www.dragonflybsd.org/cgi/web-man?command=shm_open§ion=3
|
||||
const SHM_DIR = "/var/run/shm"
|
||||
|
||||
func modify_pattern(pattern string) string {
|
||||
return pattern
|
||||
}
|
||||
Reference in New Issue
Block a user