constellation/bootstrapper/internal/etcdio/setioprio_cross.go
2024-07-09 09:27:32 +02:00

18 lines
270 B
Go

//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")
}