Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for linkage (0.71 sec)

  1. src/runtime/traceback.go

    		print(" +", hex(pc-f.entry()))
    	}
    	print("\n")
    }
    
    // callers should be an internal detail,
    // (and is almost identical to Callers),
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/phuslu/log
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname callers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    // Since p is a uintptr, it would not be adjusted if the stack were to move.
    //
    // findObject should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname findObject
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, flags int) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(oldpath)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sysnb	Getuid() (uid int)
    //sysnb	Kill(pid int, sig Signal) (err error)
    //sys	Lchown(path string, uid int, gid int) (err error) = SYS___LCHOWN_A
    //sys	Link(path string, link string) (err error) = SYS___LINK_A
    //sys	Linkat(oldDirFd int, oldPath string, newDirFd int, newPath string, flags int) (err error) = SYS___LINKAT_A
    //sys	Listen(s int, n int) (err error)
    //sys	lstat(path string, stat *Stat_LE_t) (err error) = SYS___LSTAT_A
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    // cfg is nil. This is safe to call even if cfg is in active use by a TLS
    // client or server.
    //
    // cloneTLSConfig should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/searKing/golang
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cloneTLSConfig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top