Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 132 for sys_dup (0.19 sec)

  1. src/syscall/zsyscall_plan9_386.go

    	if int32(r0) == -1 {
    		err = e1
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup(oldfd int, newfd int) (fd int, err error) {
    	r0, _, e1 := Syscall(SYS_DUP, uintptr(oldfd), uintptr(newfd), 0)
    	fd = int(r0)
    	if int32(r0) == -1 {
    		err = 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 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_plan9_arm.go

    	if int32(r0) == -1 {
    		err = e1
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup(oldfd int, newfd int) (fd int, err error) {
    	r0, _, e1 := Syscall(SYS_DUP, uintptr(oldfd), uintptr(newfd), 0)
    	fd = int(r0)
    	if int32(r0) == -1 {
    		err = 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 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/plan9/zsyscall_plan9_arm.go

    	if int32(r0) == -1 {
    		err = e1
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup(oldfd int, newfd int) (fd int, err error) {
    	r0, _, e1 := Syscall(SYS_DUP, uintptr(oldfd), uintptr(newfd), 0)
    	fd = int(r0)
    	if int32(r0) == -1 {
    		err = 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
    - 6.2K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_plan9_amd64.go

    	if int32(r0) == -1 {
    		err = e1
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup(oldfd int, newfd int) (fd int, err error) {
    	r0, _, e1 := Syscall(SYS_DUP, uintptr(oldfd), uintptr(newfd), 0)
    	fd = int(r0)
    	if int32(r0) == -1 {
    		err = 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 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  5. src/runtime/sys_plan9_arm.s

    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    // from ../syscall/zsysnum_plan9.go
    
    #define SYS_SYSR1       0
    #define SYS_BIND        2
    #define SYS_CHDIR       3
    #define SYS_CLOSE       4
    #define SYS_DUP         5
    #define SYS_ALARM       6
    #define SYS_EXEC        7
    #define SYS_EXITS       8
    #define SYS_FAUTH       10
    #define SYS_SEGBRK      12
    #define SYS_OPEN        14
    #define SYS_OSEEK       16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 29 14:15:04 UTC 2021
    - 7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go

    	if int32(r0) == -1 {
    		err = e1
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup(oldfd int, newfd int) (fd int, err error) {
    	r0, _, e1 := Syscall(SYS_DUP, uintptr(oldfd), uintptr(newfd), 0)
    	fd = int(r0)
    	if int32(r0) == -1 {
    		err = 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
    - 6.2K bytes
    - Viewed (0)
  7. src/syscall/tables_js.go

    // just arbitrary.
    //
    // TODO: delete? replace with something meaningful?
    const (
    	sys_null                 = 1
    	sys_nameservice          = 2
    	sys_dup                  = 8
    	sys_dup2                 = 9
    	sys_open                 = 10
    	sys_close                = 11
    	sys_read                 = 12
    	sys_write                = 13
    	sys_lseek                = 14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_SYNC                     = 36  // { int sync(void); }
    	SYS_KILL                     = 37  // { int kill(int pid, int signum); }
    	SYS_GETPPID                  = 39  // { pid_t getppid(void); }
    	SYS_DUP                      = 41  // { int dup(u_int fd); }
    	SYS_PIPE                     = 42  // { int pipe(void); }
    	SYS_GETEGID                  = 43  // { gid_t getegid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_freebsd_386.go

    	SYS_SYNC                     = 36  // { int sync(void); }
    	SYS_KILL                     = 37  // { int kill(int pid, int signum); }
    	SYS_GETPPID                  = 39  // { pid_t getppid(void); }
    	SYS_DUP                      = 41  // { int dup(u_int fd); }
    	SYS_PIPE                     = 42  // { int pipe(void); }
    	SYS_GETEGID                  = 43  // { gid_t getegid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_freebsd_arm.go

    	SYS_SYNC                     = 36  // { int sync(void); }
    	SYS_KILL                     = 37  // { int kill(int pid, int signum); }
    	SYS_GETPPID                  = 39  // { pid_t getppid(void); }
    	SYS_DUP                      = 41  // { int dup(u_int fd); }
    	SYS_PIPE                     = 42  // { int pipe(void); }
    	SYS_GETEGID                  = 43  // { gid_t getegid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
Back to top