Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 102 for SYS_clock_gettime (0.33 sec)

  1. src/runtime/sys_linux_s390x.s

    #define SYS_sched_getaffinity   240
    #define SYS_tgkill              241
    #define SYS_exit_group          248
    #define SYS_timer_create        254
    #define SYS_timer_settime       255
    #define SYS_timer_delete        258
    #define SYS_clock_gettime       260
    #define SYS_pipe2		325
    
    TEXT runtime·exit(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	code+0(FP), R2
    	MOVW	$SYS_exit_group, R1
    	SYSCALL
    	RET
    
    // func exitThread(wait *atomic.Uint32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_linux_s390x.go

    	SYS_TIMER_CREATE           = 254
    	SYS_TIMER_SETTIME          = 255
    	SYS_TIMER_GETTIME          = 256
    	SYS_TIMER_GETOVERRUN       = 257
    	SYS_TIMER_DELETE           = 258
    	SYS_CLOCK_SETTIME          = 259
    	SYS_CLOCK_GETTIME          = 260
    	SYS_CLOCK_GETRES           = 261
    	SYS_CLOCK_NANOSLEEP        = 262
    	SYS_STATFS64               = 265
    	SYS_FSTATFS64              = 266
    	SYS_REMAP_FILE_PAGES       = 267
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  3. src/runtime/sys_freebsd_amd64.s

    TEXT runtime·fallback_walltime(SB), NOSPLIT, $32-12
    	MOVL	$SYS_clock_gettime, AX
    	MOVQ	$CLOCK_REALTIME, DI
    	LEAQ	8(SP), SI
    	SYSCALL
    	MOVQ	8(SP), AX	// sec
    	MOVQ	16(SP), DX	// nsec
    
    	// sec is in AX, nsec in DX
    	MOVQ	AX, sec+0(FP)
    	MOVL	DX, nsec+8(FP)
    	RET
    
    TEXT runtime·fallback_nanotime(SB), NOSPLIT, $32-8
    	MOVL	$SYS_clock_gettime, AX
    	MOVQ	$CLOCK_MONOTONIC, DI
    	LEAQ	8(SP), SI
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_linux_arm64.go

    	SYS_TIMER_CREATE           = 107
    	SYS_TIMER_GETTIME          = 108
    	SYS_TIMER_GETOVERRUN       = 109
    	SYS_TIMER_SETTIME          = 110
    	SYS_TIMER_DELETE           = 111
    	SYS_CLOCK_SETTIME          = 112
    	SYS_CLOCK_GETTIME          = 113
    	SYS_CLOCK_GETRES           = 114
    	SYS_CLOCK_NANOSLEEP        = 115
    	SYS_SYSLOG                 = 116
    	SYS_PTRACE                 = 117
    	SYS_SCHED_SETPARAM         = 118
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_loong64.s

    #define SYS_madvise		233
    #define SYS_mincore		232
    #define SYS_gettid		178
    #define SYS_futex		98
    #define SYS_sched_getaffinity	123
    #define SYS_exit_group		94
    #define SYS_tgkill		131
    #define SYS_openat		56
    #define SYS_clock_gettime	113
    #define SYS_brk			214
    #define SYS_pipe2		59
    #define SYS_timer_create	107
    #define SYS_timer_settime	110
    #define SYS_timer_delete	111
    
    // func exit(code int32)
    TEXT runtime·exit(SB),NOSPLIT|NOFRAME,$0-4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go

    	SYS_TIMER_CREATE            = 107
    	SYS_TIMER_GETTIME           = 108
    	SYS_TIMER_GETOVERRUN        = 109
    	SYS_TIMER_SETTIME           = 110
    	SYS_TIMER_DELETE            = 111
    	SYS_CLOCK_SETTIME           = 112
    	SYS_CLOCK_GETTIME           = 113
    	SYS_CLOCK_GETRES            = 114
    	SYS_CLOCK_NANOSLEEP         = 115
    	SYS_SYSLOG                  = 116
    	SYS_PTRACE                  = 117
    	SYS_SCHED_SETPARAM          = 118
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_linux_loong64.go

    	SYS_TIMER_CREATE            = 107
    	SYS_TIMER_GETTIME           = 108
    	SYS_TIMER_GETOVERRUN        = 109
    	SYS_TIMER_SETTIME           = 110
    	SYS_TIMER_DELETE            = 111
    	SYS_CLOCK_SETTIME           = 112
    	SYS_CLOCK_GETTIME           = 113
    	SYS_CLOCK_GETRES            = 114
    	SYS_CLOCK_NANOSLEEP         = 115
    	SYS_SYSLOG                  = 116
    	SYS_PTRACE                  = 117
    	SYS_SCHED_SETPARAM          = 118
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_openbsd_arm64.go

    	SYS_UTIMENSAT      = 84  // { int sys_utimensat(int fd, const char *path, \
    	SYS_FUTIMENS       = 85  // { int sys_futimens(int fd, \
    	SYS_KBIND          = 86  // { int sys_kbind(const struct __kbind *param, \
    	SYS_CLOCK_GETTIME  = 87  // { int sys_clock_gettime(clockid_t clock_id, \
    	SYS_CLOCK_SETTIME  = 88  // { int sys_clock_settime(clockid_t clock_id, \
    	SYS_CLOCK_GETRES   = 89  // { int sys_clock_getres(clockid_t clock_id, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 14.7K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_linux_ppc64.go

    	SYS_TIMER_CREATE           = 240
    	SYS_TIMER_SETTIME          = 241
    	SYS_TIMER_GETTIME          = 242
    	SYS_TIMER_GETOVERRUN       = 243
    	SYS_TIMER_DELETE           = 244
    	SYS_CLOCK_SETTIME          = 245
    	SYS_CLOCK_GETTIME          = 246
    	SYS_CLOCK_GETRES           = 247
    	SYS_CLOCK_NANOSLEEP        = 248
    	SYS_SWAPCONTEXT            = 249
    	SYS_TGKILL                 = 250
    	SYS_UTIMES                 = 251
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_openbsd_amd64.go

    	SYS_SETPGID        = 82  // { int sys_setpgid(pid_t pid, int pgid); }
    	SYS_UTIMENSAT      = 84  // { int sys_utimensat(int fd, const char *path, \
    	SYS_FUTIMENS       = 85  // { int sys_futimens(int fd, \
    	SYS_CLOCK_GETTIME  = 87  // { int sys_clock_gettime(clockid_t clock_id, \
    	SYS_CLOCK_SETTIME  = 88  // { int sys_clock_settime(clockid_t clock_id, \
    	SYS_CLOCK_GETRES   = 89  // { int sys_clock_getres(clockid_t clock_id, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.2K bytes
    - Viewed (0)
Back to top