Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 133 for tzcntl (0.54 sec)

  1. src/syscall/types_solaris.go

    // backwards-compatible with older versions of Solaris and
    // OpenSolaris-based derivatives.
    #define __USE_SUNOS_SOCKETS__          // msghdr
    #define __USE_LEGACY_PROTOTYPES__      // iovec
    #include <dirent.h>
    #include <fcntl.h>
    #include <limits.h>
    #include <signal.h>
    #include <termios.h>
    #include <stdio.h>
    #include <unistd.h>
    #include <sys/mman.h>
    #include <sys/mount.h>
    #include <sys/param.h>
    #include <sys/resource.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  2. src/runtime/defs_freebsd.go

    GOARCH=386 go tool cgo -cdefs defs_freebsd.go >defs_freebsd_386.h
    GOARCH=arm go tool cgo -cdefs defs_freebsd.go >defs_freebsd_arm.h
    */
    
    package runtime
    
    /*
    #include <sys/types.h>
    #include <unistd.h>
    #include <fcntl.h>
    #include <sys/time.h>
    #include <signal.h>
    #include <errno.h>
    #include <sys/event.h>
    #include <sys/mman.h>
    #include <sys/ucontext.h>
    #include <sys/umtx.h>
    #include <sys/_umtx.h>
    #include <sys/rtprio.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/runtime/defs_darwin.go

    #define __DARWIN_UNIX03 0
    #include <mach/mach_time.h>
    #include <sys/types.h>
    #include <sys/time.h>
    #include <errno.h>
    #include <signal.h>
    #include <sys/event.h>
    #include <sys/mman.h>
    #include <pthread.h>
    #include <fcntl.h>
    */
    import "C"
    
    const (
    	EINTR     = C.EINTR
    	EFAULT    = C.EFAULT
    	EAGAIN    = C.EAGAIN
    	ETIMEDOUT = C.ETIMEDOUT
    
    	PROT_NONE  = C.PROT_NONE
    	PROT_READ  = C.PROT_READ
    	PROT_WRITE = C.PROT_WRITE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/syscall/types_dragonfly.go

    */
    
    // +godefs map struct_in_addr [4]byte /* in_addr */
    // +godefs map struct_in6_addr [16]byte /* in6_addr */
    
    package syscall
    
    /*
    #define KERNEL
    #include <dirent.h>
    #include <fcntl.h>
    #include <signal.h>
    #include <termios.h>
    #include <stdio.h>
    #include <unistd.h>
    #include <sys/event.h>
    #include <sys/mman.h>
    #include <sys/mount.h>
    #include <sys/param.h>
    #include <sys/ptrace.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5K bytes
    - Viewed (0)
  5. src/syscall/types_netbsd.go

    */
    
    // +godefs map struct_in_addr [4]byte /* in_addr */
    // +godefs map struct_in6_addr [16]byte /* in6_addr */
    
    package syscall
    
    /*
    #define KERNEL
    #include <dirent.h>
    #include <fcntl.h>
    #include <signal.h>
    #include <termios.h>
    #include <stdio.h>
    #include <unistd.h>
    #include <sys/param.h>
    #include <sys/types.h>
    #include <sys/event.h>
    #include <sys/mman.h>
    #include <sys/mount.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  6. src/syscall/syscall_unix_test.go

    		_ int = syscall.PRIO_PROCESS
    		_ int = syscall.PRIO_PGRP
    	)
    
    	// termios constants
    	const (
    		_ int = syscall.TCIFLUSH
    		_ int = syscall.TCIOFLUSH
    		_ int = syscall.TCOFLUSH
    	)
    
    	// fcntl file locking structure and constants
    	var (
    		_ = syscall.Flock_t{
    			Type:   int16(0),
    			Whence: int16(0),
    			Start:  int64(0),
    			Len:    int64(0),
    			Pid:    int32(0),
    		}
    	)
    	const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  7. src/runtime/sys_dragonfly_amd64.s

    	MOVQ	ts+40(FP), R9
    	MOVL	$363, AX
    	SYSCALL
    	JCC	2(PC)
    	NEGQ	AX
    	MOVL	AX, ret+48(FP)
    	RET
    
    // func fcntl(fd, cmd, arg int32) (ret int32, errno int32)
    TEXT runtime·fcntl(SB),NOSPLIT,$0
    	MOVL	fd+0(FP), DI	// fd
    	MOVL	cmd+4(FP), SI	// cmd
    	MOVL	arg+8(FP), DX	// arg
    	MOVL	$92, AX		// fcntl
    	SYSCALL
    	JCC	noerr
    	MOVL	$-1, ret+16(FP)
    	MOVL	AX, errno+20(FP)
    	RET
    noerr:
    	MOVL	AX, ret+16(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_unix.go

    var ioSync int64
    
    func CloseOnExec(fd int) { fcntl(fd, F_SETFD, FD_CLOEXEC) }
    
    func SetNonblock(fd int, nonblocking bool) (err error) {
    	flag, err := fcntl(fd, F_GETFL, 0)
    	if err != nil {
    		return err
    	}
    	if (flag&O_NONBLOCK != 0) == nonblocking {
    		return nil
    	}
    	if nonblocking {
    		flag |= O_NONBLOCK
    	} else {
    		flag &= ^O_NONBLOCK
    	}
    	_, err = fcntl(fd, F_SETFL, flag)
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  9. src/syscall/types_freebsd.go

    */
    
    // +godefs map struct_in_addr [4]byte /* in_addr */
    // +godefs map struct_in6_addr [16]byte /* in6_addr */
    
    package syscall
    
    /*
    #define	_WANT_FREEBSD11_KEVENT	1
    
    #include <dirent.h>
    #include <fcntl.h>
    #include <signal.h>
    #include <termios.h>
    #include <stdio.h>
    #include <unistd.h>
    #include <sys/event.h>
    #include <sys/mman.h>
    #include <sys/mount.h>
    #include <sys/param.h>
    #include <sys/ptrace.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  10. src/runtime/syscall_aix.go

    //go:cgo_import_dynamic libc_chroot chroot "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_dup2 dup2 "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_execve execve "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_fcntl fcntl "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_fork fork "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setgid setgid "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top