Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for EPOLLIN (0.14 sec)

  1. src/runtime/netpoll_epoll.go

    	if errno != 0 {
    		println("runtime: eventfd failed with", -errno)
    		throw("runtime: eventfd failed")
    	}
    	ev := syscall.EpollEvent{
    		Events: syscall.EPOLLIN,
    	}
    	*(**uintptr)(unsafe.Pointer(&ev.Data)) = &netpollEventFd
    	errno = syscall.EpollCtl(epfd, syscall.EPOLL_CTL_ADD, efd, &ev)
    	if errno != 0 {
    		println("runtime: epollctl failed with", errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/internal/runtime/syscall/defs_linux.go

    // Copyright 2024 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 (
    	EPOLLIN       = 0x1
    	EPOLLOUT      = 0x4
    	EPOLLERR      = 0x8
    	EPOLLHUP      = 0x10
    	EPOLLRDHUP    = 0x2000
    	EPOLLET       = 0x80000000
    	EPOLL_CLOEXEC = 0x80000
    	EPOLL_CTL_ADD = 0x1
    	EPOLL_CTL_DEL = 0x2
    	EPOLL_CTL_MOD = 0x3
    	EFD_CLOEXEC   = 0x80000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 437 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	EPOLL_CLOEXEC            = 0x00001000
    	EPOLL_CTL_ADD            = 0
    	EPOLL_CTL_MOD            = 1
    	EPOLL_CTL_DEL            = 2
    	EPOLLRDNORM              = 0x0001
    	EPOLLRDBAND              = 0x0002
    	EPOLLIN                  = 0x0003
    	EPOLLOUT                 = 0x0004
    	EPOLLWRBAND              = 0x0008
    	EPOLLPRI                 = 0x0010
    	EPOLLERR                 = 0x0020
    	EPOLLHUP                 = 0x0040
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	EPOLLERR                                    = 0x8
    	EPOLLET                                     = 0x80000000
    	EPOLLEXCLUSIVE                              = 0x10000000
    	EPOLLHUP                                    = 0x10
    	EPOLLIN                                     = 0x1
    	EPOLLMSG                                    = 0x400
    	EPOLLONESHOT                                = 0x40000000
    	EPOLLOUT                                    = 0x4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"EOWNERDEAD", Const, 0},
    		{"EPERM", Const, 0},
    		{"EPFNOSUPPORT", Const, 0},
    		{"EPIPE", Const, 0},
    		{"EPOLLERR", Const, 0},
    		{"EPOLLET", Const, 0},
    		{"EPOLLHUP", Const, 0},
    		{"EPOLLIN", Const, 0},
    		{"EPOLLMSG", Const, 0},
    		{"EPOLLONESHOT", Const, 0},
    		{"EPOLLOUT", Const, 0},
    		{"EPOLLPRI", Const, 0},
    		{"EPOLLRDBAND", Const, 0},
    		{"EPOLLRDHUP", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top