blob: b87a355093e4894dadfa21412f71e646b7fe889c [file] [log] [blame]
// 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_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
}