constellation/bootstrapper/internal/etcdio/setioprio_cross.go

18 lines
270 B
Go
Raw Normal View History

2024-07-09 03:27:32 -04:00
//go:build !linux
/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
package etcdio
import (
"syscall"
)
func setioprio(_, _, _ uintptr) (uintptr, uintptr, syscall.Errno) {
panic("setioprio not implemented on non-Linux platforms")
}