Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for libc (0.04 sec)

  1. src/internal/syscall/unix/at_solaris.go

    func rawSyscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)
    
    //go:cgo_import_dynamic libc_fstatat fstatat "libc.so"
    //go:cgo_import_dynamic libc_openat openat "libc.so"
    //go:cgo_import_dynamic libc_unlinkat unlinkat "libc.so"
    //go:cgo_import_dynamic libc_uname uname "libc.so"
    
    const (
    	AT_REMOVEDIR        = 0x1
    	AT_SYMLINK_NOFOLLOW = 0x1000
    
    	UTIME_OMIT = -0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 814 bytes
    - Viewed (0)
  2. src/runtime/sys_openbsd3.go

    package runtime
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    // The X versions of syscall expect the libc call to return a 64-bit result.
    // Otherwise (the non-X version) expects a 32-bit result.
    // This distinction is required because an error is indicated by returning -1,
    // and we need to know whether to check 32 or 64 bits of the result.
    // (Some libc functions that return 32 bits put junk in the upper 32 bits of AX.)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/syscall/syscall_openbsd_libc.go

    	// packages make use of syscall.Syscall with SYS_IOCTL since it is
    	// not well supported by golang.org/x/sys/unix. Reroute this system
    	// call number to the respective libc stub so that it continues to
    	// work for the time being. See #63900 for further details.
    	if trap == SYS_IOCTL {
    		return syscallX(abi.FuncPCABI0(libc_ioctl_trampoline), a1, a2, a3)
    	}
    	return 0, 0, ENOSYS
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/bug/bug.go

    		return
    	}
    	re := regexp.MustCompile(`libc\.so[^ ]* => ([^ ]+)`)
    	m := re.FindStringSubmatch(string(out))
    	if m == nil {
    		return
    	}
    	cmd = exec.Command(m[1])
    	out, err = cmd.Output()
    	if err != nil {
    		return
    	}
    	fmt.Fprintf(w, "%s: %s\n", m[1], firstLine(out))
    
    	// print another line (the one containing version string) in case of musl libc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/runtime/lock_futex.go

    }
    
    func notesleep(n *note) {
    	gp := getg()
    	if gp != gp.m.g0 {
    		throw("notesleep not on g0")
    	}
    	ns := int64(-1)
    	if *cgo_yield != nil {
    		// Sleep for an arbitrary-but-moderate interval to poll libc interceptors.
    		ns = 10e6
    	}
    	for atomic.Load(key32(&n.key)) == 0 {
    		gp.m.blocked = true
    		futexsleep(key32(&n.key), 0, ns)
    		if *cgo_yield != nil {
    			asmcgocall(*cgo_yield, nil)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/runtime/lock_sema.go

    		}
    		return
    	}
    	// Queued. Sleep.
    	gp.m.blocked = true
    	if *cgo_yield == nil {
    		semasleep(-1)
    	} else {
    		// Sleep for an arbitrary-but-moderate interval to poll libc interceptors.
    		const ns = 10e6
    		for atomic.Loaduintptr(&n.key) == 0 {
    			semasleep(ns)
    			asmcgocall(*cgo_yield, nil)
    		}
    	}
    	gp.m.blocked = false
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. src/os/user/cgo_lookup_unix.go

    	sz := _C_sysconf(_C_int(k))
    	if sz == -1 {
    		// DragonFly and FreeBSD do not have _SC_GETPW_R_SIZE_MAX.
    		// Additionally, not all Linux systems have it, either. For
    		// example, the musl libc returns -1.
    		return 1024
    	}
    	if !isSizeReasonable(int64(sz)) {
    		// Truncate.  If this truly isn't enough, retryWithBuffer will error on the first run.
    		return maxBufferSize
    	}
    	return _C_size_t(sz)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:08:14 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleProjectIntegrationTest.groovy

        def "can fetch GradleProject model for empty projects"() {
            settingsFile << """
                rootProject.name = 'root'
    
                include(":lib1")
                include(":lib1:lib11")
            """
    
            when: "fetching without Isolated Projects"
            def expectedProjectModel = fetchModel(GradleProject)
    
            then:
            fixture.assertNoConfigurationCache()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. prow/lib.sh

    John Howard <******@****.***> 1715257612 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. gradle/libs.versions.toml

    renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 1714972012 +0100
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 06 05:06:52 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top