mirror of
https://github.com/rclone/rclone.git
synced 2024-12-02 21:37:31 +01:00
24 lines
397 B
Go
24 lines
397 B
Go
|
// +build darwin linux
|
||
|
|
||
|
/*
|
||
|
* host_unix_test.go
|
||
|
*
|
||
|
* Copyright 2017 Bill Zissimopoulos
|
||
|
*/
|
||
|
/*
|
||
|
* This file is part of Cgofuse.
|
||
|
*
|
||
|
* It is licensed under the MIT license. The full license text can be found
|
||
|
* in the License.txt file at the root of this project.
|
||
|
*/
|
||
|
|
||
|
package fuse
|
||
|
|
||
|
import (
|
||
|
"syscall"
|
||
|
)
|
||
|
|
||
|
func sendInterrupt() bool {
|
||
|
return nil == syscall.Kill(syscall.Getpid(), syscall.SIGINT)
|
||
|
}
|