Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for sys_mprotect (0.16 sec)

  1. src/internal/runtime/syscall/defs_linux_amd64.go

    // 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.
    
    package syscall
    
    const (
    	SYS_MPROTECT      = 10
    	SYS_FCNTL         = 72
    	SYS_EPOLL_CTL     = 233
    	SYS_EPOLL_PWAIT   = 281
    	SYS_EPOLL_CREATE1 = 291
    	SYS_EPOLL_PWAIT2  = 441
    	SYS_EVENTFD2      = 290
    
    	EFD_NONBLOCK = 0x800
    )
    
    type EpollEvent struct {
    	Events uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 463 bytes
    - Viewed (0)
  2. src/internal/runtime/syscall/defs_linux_arm.go

    // 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.
    
    package syscall
    
    const (
    	SYS_FCNTL         = 55
    	SYS_MPROTECT      = 125
    	SYS_EPOLL_CTL     = 251
    	SYS_EPOLL_PWAIT   = 346
    	SYS_EPOLL_CREATE1 = 357
    	SYS_EPOLL_PWAIT2  = 441
    	SYS_EVENTFD2      = 356
    
    	EFD_NONBLOCK = 0x800
    )
    
    type EpollEvent struct {
    	Events uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 476 bytes
    - Viewed (0)
  3. src/internal/runtime/syscall/defs_linux_arm64.go

    // license that can be found in the LICENSE file.
    
    package syscall
    
    const (
    	SYS_EPOLL_CREATE1 = 20
    	SYS_EPOLL_CTL     = 21
    	SYS_EPOLL_PWAIT   = 22
    	SYS_FCNTL         = 25
    	SYS_MPROTECT      = 226
    	SYS_EPOLL_PWAIT2  = 441
    	SYS_EVENTFD2      = 19
    
    	EFD_NONBLOCK = 0x800
    )
    
    type EpollEvent struct {
    	Events uint32
    	_pad   uint32
    	Data   [8]byte // to match amd64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 472 bytes
    - Viewed (0)
  4. src/internal/runtime/syscall/defs_linux_s390x.go

    // 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.
    
    package syscall
    
    const (
    	SYS_FCNTL         = 55
    	SYS_MPROTECT      = 125
    	SYS_EPOLL_CTL     = 250
    	SYS_EPOLL_PWAIT   = 312
    	SYS_EPOLL_CREATE1 = 327
    	SYS_EPOLL_PWAIT2  = 441
    	SYS_EVENTFD2      = 323
    
    	EFD_NONBLOCK = 0x800
    )
    
    type EpollEvent struct {
    	Events    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 489 bytes
    - Viewed (0)
  5. src/internal/runtime/syscall/defs_linux_mips64x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips64 || mips64le)
    
    package syscall
    
    const (
    	SYS_MPROTECT      = 5010
    	SYS_FCNTL         = 5070
    	SYS_EPOLL_CTL     = 5208
    	SYS_EPOLL_PWAIT   = 5272
    	SYS_EPOLL_CREATE1 = 5285
    	SYS_EPOLL_PWAIT2  = 5441
    	SYS_EVENTFD2      = 5284
    
    	EFD_NONBLOCK = 0x80
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 538 bytes
    - Viewed (0)
  6. src/internal/runtime/syscall/defs_linux_ppc64x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && (ppc64 || ppc64le)
    
    package syscall
    
    const (
    	SYS_FCNTL         = 55
    	SYS_MPROTECT      = 125
    	SYS_EPOLL_CTL     = 237
    	SYS_EPOLL_PWAIT   = 303
    	SYS_EPOLL_CREATE1 = 315
    	SYS_EPOLL_PWAIT2  = 441
    	SYS_EVENTFD2      = 314
    
    	EFD_NONBLOCK = 0x800
    )
    
    type EpollEvent struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 529 bytes
    - Viewed (0)
  7. src/internal/runtime/syscall/defs_linux_386.go

    // 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.
    
    package syscall
    
    const (
    	SYS_FCNTL         = 55
    	SYS_MPROTECT      = 125
    	SYS_EPOLL_CTL     = 255
    	SYS_EPOLL_PWAIT   = 319
    	SYS_EPOLL_CREATE1 = 329
    	SYS_EPOLL_PWAIT2  = 441
    	SYS_EVENTFD2      = 328
    
    	EFD_NONBLOCK = 0x800
    )
    
    type EpollEvent struct {
    	Events uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 461 bytes
    - Viewed (0)
  8. src/internal/runtime/syscall/defs_linux_loong64.go

    // license that can be found in the LICENSE file.
    
    package syscall
    
    const (
    	SYS_EPOLL_CREATE1 = 20
    	SYS_EPOLL_CTL     = 21
    	SYS_EPOLL_PWAIT   = 22
    	SYS_FCNTL         = 25
    	SYS_MPROTECT      = 226
    	SYS_EPOLL_PWAIT2  = 441
    	SYS_EVENTFD2      = 19
    
    	EFD_NONBLOCK = 0x800
    )
    
    type EpollEvent struct {
    	Events    uint32
    	pad_cgo_0 [4]byte
    	Data      [8]byte // unaligned uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 485 bytes
    - Viewed (0)
  9. src/internal/runtime/syscall/defs_linux_riscv64.go

    // license that can be found in the LICENSE file.
    
    package syscall
    
    const (
    	SYS_EPOLL_CREATE1 = 20
    	SYS_EPOLL_CTL     = 21
    	SYS_EPOLL_PWAIT   = 22
    	SYS_FCNTL         = 25
    	SYS_MPROTECT      = 226
    	SYS_EPOLL_PWAIT2  = 441
    	SYS_EVENTFD2      = 19
    
    	EFD_NONBLOCK = 0x800
    )
    
    type EpollEvent struct {
    	Events    uint32
    	pad_cgo_0 [4]byte
    	Data      [8]byte // unaligned uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 485 bytes
    - Viewed (0)
  10. src/internal/runtime/syscall/defs_linux_mipsx.go

    // 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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 512 bytes
    - Viewed (0)
Back to top