mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-27 00:19:36 -05:00
18 lines
270 B
Go
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")
|
||
|
}
|