github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/kbfs/libkbfs/sigpwr_supported.go (about) 1 // Copyright 2019 Keybase Inc. All rights reserved. 2 // Use of this source code is governed by a BSD 3 // license that can be found in the LICENSE file. 4 // 5 //go:build linux || netbsd 6 // +build linux netbsd 7 8 // see files in https://golang.org/src/syscall/ starting with "zerrors_" for support 9 10 package libkbfs 11 12 import "syscall" 13 14 // SIGPWR is the power failure signal on Linux. 15 const SIGPWR = syscall.SIGPWR