Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for SYS_clock_gettime (0.41 sec)

  1. src/runtime/sys_freebsd_arm.s

    #define SYS_setitimer (SYS_BASE + 83)
    #define SYS_fcntl (SYS_BASE + 92)
    #define SYS___sysctl (SYS_BASE + 202)
    #define SYS_nanosleep (SYS_BASE + 240)
    #define SYS_issetugid (SYS_BASE + 253)
    #define SYS_clock_gettime (SYS_BASE + 232)
    #define SYS_sched_yield (SYS_BASE + 331)
    #define SYS_sigprocmask (SYS_BASE + 340)
    #define SYS_kqueue (SYS_BASE + 362)
    #define SYS_sigaction (SYS_BASE + 416)
    #define SYS_thr_exit (SYS_BASE + 431)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_mips64x.s

    #define SYS_sched_getaffinity	5196
    #define SYS_exit_group		5205
    #define SYS_timer_create	5216
    #define SYS_timer_settime	5217
    #define SYS_timer_delete	5220
    #define SYS_tgkill		5225
    #define SYS_openat		5247
    #define SYS_clock_gettime	5222
    #define SYS_brk			5012
    #define SYS_pipe2		5287
    
    TEXT runtime·exit(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	code+0(FP), R4
    	MOVV	$SYS_exit_group, R2
    	SYSCALL
    	RET
    
    // func exitThread(wait *atomic.Uint32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 12K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_riscv64.s

    //
    
    #include "textflag.h"
    #include "go_asm.h"
    
    #define AT_FDCWD -100
    #define CLOCK_REALTIME 0
    #define CLOCK_MONOTONIC 1
    
    #define SYS_brk			214
    #define SYS_clock_gettime	113
    #define SYS_clone		220
    #define SYS_close		57
    #define SYS_connect		203
    #define SYS_exit		93
    #define SYS_exit_group		94
    #define SYS_faccessat		48
    #define SYS_futex		98
    #define SYS_getpid		172
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top