From e0caad44eb6ff7d960b008bf8c4f85b35ad6171d Mon Sep 17 00:00:00 2001 From: hslam <791874158@qq.com> Date: Fri, 27 Nov 2020 16:52:35 +0800 Subject: [PATCH] first commit --- ftok.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ftok.go diff --git a/ftok.go b/ftok.go new file mode 100644 index 0000000..bc2e35b --- /dev/null +++ b/ftok.go @@ -0,0 +1,21 @@ +// Copyright (c) 2020 Meng Huang (mhboy@outlook.com) +// This package is licensed under a MIT license that can be found in the LICENSE file. + +// Package ftok provides a way to generate a System V IPC key, suitable for use with +// msgget, semget, or shmget. +package ftok + +import ( + "syscall" +) + +// Ftok uses the given pathname (which must refer to an existing, accessible file) and +// the least significant 8 bits of proj_id (which must be nonzero) to generate +// a key_t type System V IPC key. +func Ftok(pathname string, projectid uint8) (int, error) { + var stat = syscall.Stat_t{} + if err := syscall.Stat(pathname, &stat); err != nil { + return 0, err + } + return int(uint(projectid&0xff)<<24 | uint((stat.Dev&0xff)<<16) | (uint(stat.Ino) & 0xffff)), nil +}