Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for callsyslog (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go

    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Klogctl(typ int, buf []byte) (n int, err error) {
    	var _p0 *byte
    	if len(buf) > 0 {
    		_p0 = &buf[0]
    	}
    	r0, e1 := callsyslog(typ, uintptr(unsafe.Pointer(_p0)), len(buf))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    	r1 = uintptr(C.kill(C.int(pid), C.int(sig)))
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callsyslog(typ int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.syslog(C.int(typ), C.uintptr_t(_p0), C.size_t(_lenp0)))
    	e1 = syscall.GetErrno()
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go

    	r1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_kill)), 2, uintptr(pid), uintptr(sig), 0, 0, 0, 0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callsyslog(typ int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
    	r1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_syslog)), 3, uintptr(typ), _p0, uintptr(_lenp0), 0, 0, 0)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 42.4K bytes
    - Viewed (0)
  4. src/syscall/exec_linux_test.go

    			fmt.Fprintln(os.Stderr, "CAP_SYS_TIME unexpectedly not in the effective capability mask")
    			os.Exit(2)
    		}
    		if caps.data[1].effective&(1<<uint(CAP_SYSLOG&31)) == 0 {
    			fmt.Fprintln(os.Stderr, "CAP_SYSLOG unexpectedly not in the effective capability mask")
    			os.Exit(2)
    		}
    		os.Exit(0)
    	}
    
    	// skip on android, due to lack of lookup support
    	if runtime.GOOS == "android" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	CAP_SETFCAP                                 = 0x1f
    	CAP_SETGID                                  = 0x6
    	CAP_SETPCAP                                 = 0x8
    	CAP_SETUID                                  = 0x7
    	CAP_SYSLOG                                  = 0x22
    	CAP_SYS_ADMIN                               = 0x15
    	CAP_SYS_BOOT                                = 0x16
    	CAP_SYS_CHROOT                              = 0x12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
Back to top