mirror of
https://github.com/quexten/goldwarden.git
synced 2025-01-28 10:39:47 +01:00
9 lines
155 B
Go
9 lines
155 B
Go
//go:build linux || freebsd
|
|
|
|
package processsecurity
|
|
|
|
func DisableDumpable() error {
|
|
// return unix.Prctl(unix.PR_SET_DUMPABLE, 0, 0, 0, 0)
|
|
return nil
|
|
}
|