mirror of
https://github.com/restic/restic.git
synced 2025-11-09 01:31:05 +00:00
9 lines
113 B
Go
9 lines
113 B
Go
|
|
package termstatus
|
||
|
|
|
||
|
|
import "golang.org/x/sys/unix"
|
||
|
|
|
||
|
|
func Getpgrp() int {
|
||
|
|
pid, _ := unix.Getpgrp()
|
||
|
|
return pid
|
||
|
|
}
|