Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 511 for libc (0.14 sec)

  1. src/runtime/cgo/linux.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Linux system call wrappers that provide POSIX semantics through the
    // corresponding cgo->libc (nptl) wrappers for various system calls.
    
    //go:build linux
    
    package cgo
    
    import "unsafe"
    
    // Each of the following entries is needed to ensure that the
    // syscall.syscall_linux code can conditionally call these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  2. src/runtime/sys_darwin.go

    //go:cgo_import_dynamic libc_close close "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_read read "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_write write "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_pipe pipe "/usr/lib/libSystem.B.dylib"
    
    //go:cgo_import_dynamic libc_mmap mmap "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_munmap munmap "/usr/lib/libSystem.B.dylib"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. src/runtime/os_aix.go

    	initsig(true)
    }
    
    // Ms related functions
    func mpreinit(mp *m) {
    	mp.gsignal = malg(32 * 1024) // AIX wants >= 8K
    	mp.gsignal.m = mp
    }
    
    // errno address must be retrieved by calling _Errno libc function.
    // This will return a pointer to errno.
    func miniterrno() {
    	mp := getg().m
    	r, _ := syscall0(&libc__Errno)
    	mp.perrno = r
    
    }
    
    func minit() {
    	miniterrno()
    	minitSignals()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/runtime/vdso_freebsd.go

    	// an atomic_thread_fence_acq() call which behaves as an instruction reordering and
    	// memory barrier.
    	binuptimeDummy uint32
    
    	zeroBintime bintime
    )
    
    // based on /usr/src/lib/libc/sys/__vdso_gettimeofday.c
    //
    //go:nosplit
    func binuptime(abs bool) (bt bintime) {
    	timehands := (*[_VDSO_TH_NUM]vdsoTimehands)(add(unsafe.Pointer(timekeepSharedPage), vdsoTimekeepSize))
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf_test.go

    	}
    	libs, err := f.ImportedLibraries()
    	if err != nil {
    		t.Fatalf("Failed to read imported libraries: %v", err)
    	}
    
    	var count int
    	for _, lib := range libs {
    		if lib == "libc.so" || strings.HasPrefix(lib, "libc.so.") {
    			count++
    		}
    	}
    
    	if got, want := count, 1; got != want {
    		t.Errorf("Got %d entries for `libc.so`, want %d", got, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/doc.go

    	//go:cgo_import_dynamic puts puts#GLIBC_2.2.5 "libc.so.6"
    	//go:cgo_import_dynamic __libc_start_main __libc_start_main#GLIBC_2.2.5 "libc.so.6"
    	//go:cgo_import_dynamic stdout stdout#GLIBC_2.2.5 "libc.so.6"
    	//go:cgo_import_dynamic fflush fflush#GLIBC_2.2.5 "libc.so.6"
    	//go:cgo_import_dynamic _ _ "libpthread.so.0"
    	//go:cgo_import_dynamic _ _ "libc.so.6"
    
    In the end, the compiled Go package, which will eventually be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

     0x0000000000000001 (NEEDED)             Shared library: [libstdc++.so.6]
     0x0000000000000001 (NEEDED)             Shared library: [libm.so.6]
     0x0000000000000001 (NEEDED)             Shared library: [libgcc_s.so.1]
     0x0000000000000001 (NEEDED)             Shared library: [libc.so.6]
     0x000000000000000e (SONAME)             Library soname: [heythere]
     0x000000000000000c (INIT)               0x668
    """],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

            }
            if (isLinuxWithMusl()) {
                LOGGER.debug("Native-platform is not available on Linux with musl libc.");
                return false;
            }
            return true;
        }
    
        /**
         * Our native libraries don't currently support musl libc.
         * See <a href="https://github.com/gradle/gradle/issues/24875">#24875</a>.
         */
        private static boolean isLinuxWithMusl() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/syscall/exec_libc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build aix || solaris
    
    // This file handles forkAndExecInChild function for OS using libc syscall like AIX or Solaris.
    
    package syscall
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    type SysProcAttr struct {
    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/go.go

    			// Record unversioned name as seen.
    			seenlib[name] = true
    			libraries[name] = lib
    		} else if _, ok := libraries[lib]; !ok {
    			libraries[lib] = lib
    		}
    	}
    
    	libs = nil
    	for _, lib := range libraries {
    		libs = append(libs, lib)
    	}
    	sort.Strings(libs)
    
    	return libs
    }
    
    func dedupLibraries(ctxt *Link, libs []string) []string {
    	if ctxt.Target.IsOpenbsd() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top