Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 537 for libc (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/noder/lex_test.go

    			{`go:cgo_import_dynamic local' remote' "lib rary"`, []string{`cgo_import_dynamic`, `local'`, `remote'`, `lib rary`}},
    		}...)
    	} else {
    		// cgo_import_dynamic with a library is slightly different on AIX
    		// as the library field must follow the pattern [libc.a/object.o].
    		tests = append(tests, []testStruct{
    			{`go:cgo_import_dynamic local remote "lib.a/obj.o"`, []string{`cgo_import_dynamic`, `local`, `remote`, `lib.a/obj.o`}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:39:06 UTC 2020
    - 3.6K 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. src/debug/elf/symbols_test.go

    			Section: 0x0,
    			Value:   0x0,
    			Size:    0x18C,
    			Version: "GLIBC_2.2.5",
    			Library: "libc.so.6",
    		},
    		Symbol{
    			Name:    "__libc_start_main",
    			Info:    0x12,
    			Other:   0x0,
    			Section: 0x0,
    			Value:   0x0,
    			Size:    0x1C2,
    			Version: "GLIBC_2.2.5",
    			Library: "libc.so.6",
    		},
    	},
    	"testdata/go-relocation-test-clang-x86.obj": {},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 05 18:18:26 UTC 2019
    - 13.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top