blob: f147865f447c6f5736f9a346e2a55ccab951bf9d [file]
// Copyright 2022 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build linux && (mips || mipsle)
package syscall
const (
SYS_FCNTL = 4055
SYS_MPROTECT = 4125
SYS_PRCTL = 4192
SYS_EPOLL_CTL = 4249
SYS_EPOLL_PWAIT = 4313
SYS_EPOLL_CREATE1 = 4326
SYS_EPOLL_PWAIT2 = 4441
SYS_EVENTFD2 = 4325
EFD_NONBLOCK = 0x80
)
type EpollEvent struct {
Events uint32
pad_cgo_0 [4]byte
Data uint64
}