1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-01 19:18:28 -04:00
Files
DankMaterialShell/core/internal/server/trayrecovery/suspend_freebsd.go
T
bbedward 90291bd627 freebsd: add initial support for running on FreeBSD, excluding Bluez,
ppd, and some things. Add a simple wpa_supplicant backend
2026-07-19 10:31:48 -04:00

10 lines
227 B
Go

package trayrecovery
import "time"
// FreeBSD has no CLOCK_BOOTTIME (clock_gettime(2)), so suspend time since
// boot cannot be measured; the startup recovery scan is skipped.
func timeSuspended() time.Duration {
return 0
}