Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for EPOLLIN (0.16 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. pkg/kubelet/eviction/threshold_notifier_linux.go

    			if event.Events&unix.EPOLLHUP != 0 || event.Events&unix.EPOLLERR != 0 || event.Events&unix.EPOLLIN != 0 {
    				// EPOLLHUP: should not happen, but if it does, treat it as a wakeup.
    
    				// EPOLLERR: If an error is waiting on the file descriptor, we should pretend
    				// something is ready to read, and let unix.Read pick up the error.
    
    				// EPOLLIN: There is data to read.
    				return true, nil
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 01 21:59:54 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  4. 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)
  5. src/syscall/zerrors_linux_amd64.go

    	DT_UNKNOWN                       = 0x0
    	DT_WHT                           = 0xe
    	EPOLLERR                         = 0x8
    	EPOLLET                          = -0x80000000
    	EPOLLHUP                         = 0x10
    	EPOLLIN                          = 0x1
    	EPOLLMSG                         = 0x400
    	EPOLLONESHOT                     = 0x40000000
    	EPOLLOUT                         = 0x4
    	EPOLLPRI                         = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  6. src/syscall/zerrors_linux_386.go

    	DT_UNKNOWN                       = 0x0
    	DT_WHT                           = 0xe
    	EPOLLERR                         = 0x8
    	EPOLLET                          = -0x80000000
    	EPOLLHUP                         = 0x10
    	EPOLLIN                          = 0x1
    	EPOLLMSG                         = 0x400
    	EPOLLONESHOT                     = 0x40000000
    	EPOLLOUT                         = 0x4
    	EPOLLPRI                         = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  7. src/syscall/zerrors_linux_riscv64.go

    	ENCODING_NRZI                    = 0x2
    	EPOLLERR                         = 0x8
    	EPOLLET                          = 0x80000000
    	EPOLLEXCLUSIVE                   = 0x10000000
    	EPOLLHUP                         = 0x10
    	EPOLLIN                          = 0x1
    	EPOLLMSG                         = 0x400
    	EPOLLONESHOT                     = 0x40000000
    	EPOLLOUT                         = 0x4
    	EPOLLPRI                         = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.8K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_arm.go

    	ELF_NGREG                        = 0x12
    	ELF_PRARGSZ                      = 0x50
    	EPOLLERR                         = 0x8
    	EPOLLET                          = -0x80000000
    	EPOLLHUP                         = 0x10
    	EPOLLIN                          = 0x1
    	EPOLLMSG                         = 0x400
    	EPOLLONESHOT                     = 0x40000000
    	EPOLLOUT                         = 0x4
    	EPOLLPRI                         = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.9K bytes
    - Viewed (0)
  9. src/syscall/zerrors_linux_ppc64le.go

    	ENCODING_NRZ                     = 0x1
    	ENCODING_NRZI                    = 0x2
    	EPOLLERR                         = 0x8
    	EPOLLET                          = 0x80000000
    	EPOLLHUP                         = 0x10
    	EPOLLIN                          = 0x1
    	EPOLLMSG                         = 0x400
    	EPOLLONESHOT                     = 0x40000000
    	EPOLLOUT                         = 0x4
    	EPOLLPRI                         = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 71.8K bytes
    - Viewed (0)
  10. src/syscall/zerrors_linux_ppc64.go

    	ENCODING_NRZ                     = 0x1
    	ENCODING_NRZI                    = 0x2
    	EPOLLERR                         = 0x8
    	EPOLLET                          = 0x80000000
    	EPOLLHUP                         = 0x10
    	EPOLLIN                          = 0x1
    	EPOLLMSG                         = 0x400
    	EPOLLONESHOT                     = 0x40000000
    	EPOLLOUT                         = 0x4
    	EPOLLPRI                         = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.9K bytes
    - Viewed (0)
Back to top