Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for syscall0 (0.1 sec)

  1. src/runtime/traceback.go

    		// instead on the g0 stack.
    		throw("cannot trace user goroutine on its own stack")
    	}
    
    	if pc0 == ^uintptr(0) && sp0 == ^uintptr(0) { // Signal to fetch saved values from gp.
    		if gp.syscallsp != 0 {
    			pc0 = gp.syscallpc
    			sp0 = gp.syscallsp
    			if usesLR {
    				lr0 = 0
    			}
    		} else {
    			pc0 = gp.sched.pc
    			sp0 = gp.sched.sp
    			if usesLR {
    				lr0 = gp.sched.lr
    			}
    		}
    	}
    
    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. cmd/xl-storage.go

    				}
    			}
    		}
    	}
    
    	// Set skipParent to skip mkdirAll() calls for deeply nested objects
    	// - if its an overwrite
    	// - if its a versioned object
    	//
    	// This can potentiall reduce syscalls by strings.Split(path, "/")
    	// times relative to the object name.
    	skipParent := dstVolumeDir
    	if len(dstBuf) > 0 {
    		skipParent = pathutil.Dir(dstFilePath)
    	}
    
    	var reqVID string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. src/syscall/zerrors_darwin_arm64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build arm64 && darwin
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    	AF_CNT                            = 0x15
    	AF_COIP                           = 0x14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    			Xauxtype: _AUX_CSECT,
    			Xsmclas:  XMC_DS,
    			Xsmtyp:   XTY_ER | XTY_IMP,
    		}
    
    		if ldr.SymName(x) == "__n_pthreads" {
    			// Currently, all imported symbols made by cgo_import_dynamic are
    			// syscall functions, except __n_pthreads which is a variable.
    			// TODO(aix): Find a way to detect variables imported by cgo.
    			a4.Xsmclas = XMC_RW
    		}
    
    		syms = append(syms, a4)
    
    	case TLSSym:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/syscall/zerrors_darwin_amd64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build amd64 && darwin
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    	AF_CNT                            = 0x15
    	AF_COIP                           = 0x14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  6. src/syscall/zerrors_solaris_amd64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build amd64 && solaris
    
    package syscall
    
    const (
    	AF_802                        = 0x12
    	AF_APPLETALK                  = 0x10
    	AF_CCITT                      = 0xa
    	AF_CHAOS                      = 0x5
    	AF_DATAKIT                    = 0x9
    	AF_DECnet                     = 0xc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  7. src/syscall/zerrors_linux_amd64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build amd64 && linux
    
    package syscall
    
    const (
    	AF_ALG                           = 0x26
    	AF_APPLETALK                     = 0x5
    	AF_ASH                           = 0x12
    	AF_ATMPVC                        = 0x8
    	AF_ATMSVC                        = 0x14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  8. src/syscall/zerrors_openbsd_arm.go

    // mkerrors.sh
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- _const.go
    
    //go:build arm && openbsd
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_BLUETOOTH                      = 0x20
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    	AF_CNT                            = 0x15
    	AF_COIP                           = 0x14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 62.5K bytes
    - Viewed (0)
  9. src/syscall/zerrors_freebsd_arm.go

    // mkerrors.sh
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- _const.go
    
    //go:build arm && freebsd
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x23
    	AF_ATM                            = 0x1e
    	AF_BLUETOOTH                      = 0x24
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.3K bytes
    - Viewed (0)
  10. src/syscall/zerrors_freebsd_arm64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build freebsd && arm64
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -m64 _const.go
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x23
    	AF_ATM                            = 0x1e
    	AF_BLUETOOTH                      = 0x24
    	AF_CCITT                          = 0xa
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.4K bytes
    - Viewed (0)
Back to top