Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for libc (0.05 sec)

  1. src/syscall/mksyscall.pl

    	$text .= "}\n\n";
    	if($libc) {
    		if (not exists $trampolines{$funcname}) {
    			$trampolines{$funcname} = 1;
    			# The assembly trampoline that jumps to the libc routine.
    			$text .= "func ${funcname}_trampoline()\n\n";
    			# Tell the linker that funcname can be found in libSystem using varname without the libc_ prefix.
    			my $basename = substr $funcname, 5;
    			my $libc = "libc.so";
    			if ($darwin) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_aix_ppc64.go

    //go:cgo_import_dynamic libc_getgroups getgroups "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setgroups setgroups "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_getdirent getdirent "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_wait4 wait4 "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_fsync_range fsync_range "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_bind bind "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

                }
    
                plugins {
                    id("org.gradle.experimental.jvm-ecosystem")
                }
    
                rootProject.name = "root-project"
    
                include(":libA")
                include(":libB")
                include(":libC")
    
            """.stripIndent()
    
            if (config.subProjects != 0) {
                includedProjects += """${(0..config.subProjects - 1).collect { "include(\"project$it\")" }.join("\n")}"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. src/net/conf.go

    					// similar local resolution mechanisms, assume that
    					// libc might (via Avahi, etc) and use cgo.
    					return hostLookupCgo, dnsConf
    				}
    
    				// We don't parse mdns.allow files. They're rare. If one
    				// exists, it might list other TLDs (besides .local) or even
    				// '*', so just let libc deal with it.
    				var haveMDNSAllow bool
    				switch c.mdnsTest {
    				case mdnsFromSystem:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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/runtime/signal_unix.go

    // 1. It should be a signal that's passed-through by debuggers by
    // default. On Linux, this is SIGALRM, SIGURG, SIGCHLD, SIGIO,
    // SIGVTALRM, SIGPROF, and SIGWINCH, plus some glibc-internal signals.
    //
    // 2. It shouldn't be used internally by libc in mixed Go/C binaries
    // because libc may assume it's the only thing that can handle these
    // signals. For example SIGCANCEL or SIGSETXID.
    //
    // 3. It should be a signal that can happen spuriously without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. src/runtime/crash_test.go

    		}
    	}
    }
    
    func TestTimePprof(t *testing.T) {
    	// This test is unreliable on any system in which nanotime
    	// calls into libc.
    	switch runtime.GOOS {
    	case "aix", "darwin", "illumos", "openbsd", "solaris":
    		t.Skipf("skipping on %s because nanotime calls libc", runtime.GOOS)
    	}
    
    	// Pass GOTRACEBACK for issue #41120 to try to get more
    	// information on timeout.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top