Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for syscall_runtime_doAllThreadsSyscall (0.33 sec)

  1. src/runtime/os_linux.go

    // all Ms.
    var perThreadSyscall perThreadSyscallArgs
    
    // syscall_runtime_doAllThreadsSyscall and executes a specified system call on
    // all Ms.
    //
    // The system call is expected to succeed and return the same value on every
    // thread. If any threads do not match, the runtime throws.
    //
    //go:linkname syscall_runtime_doAllThreadsSyscall syscall.runtime_doAllThreadsSyscall
    //go:uintptrescapes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux.go

    //sys	Sethostname(p []byte) (err error)
    //sysnb	Setpgid(pid int, pgid int) (err error)
    //sysnb	Setsid() (pid int, err error)
    //sysnb	Settimeofday(tv *Timeval) (err error)
    
    // Provided by runtime.syscall_runtime_doAllThreadsSyscall which stops the
    // world and invokes the syscall on each OS thread. Once this function returns,
    // all threads are in sync.
    //
    //go:uintptrescapes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top