Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 537 for libc (0.15 sec)

  1. src/runtime/sys_openbsd_386.s

    	MOVL	DX, (5*4)(BX)		// r2
    
    	// Standard libc functions return -1 on error and set errno.
    	CMPL	AX, $-1
    	JNE	ok
    
    	// Get error code from libc.
    	CALL	libc_errno(SB)
    	MOVL	(AX), AX
    	MOVW	AX, (6*4)(BX)		// err
    
    ok:
    	MOVL	$0, AX			// no error (it's ignored anyway)
    	MOVL	BP, SP
    	POPL	BP
    	RET
    
    // syscallX calls a function in libc on behalf of the syscall package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildNestingIntegrationTest.groovy

            def buildC = singleProjectBuild("buildC") {
                settingsFile << """
                    rootProject.name = 'libc'
                """
                buildFile << """
                    apply plugin: 'java'
                """
                file("src/main/java/LibC.java") << """
                    public class LibC { }
                """
            }
            def buildB = singleProjectBuild("buildB") {
                settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. src/runtime/pprof/proto_test.go

    7f7d76af8000-7f7d7797c000 r--p 00000000 fc:01 1318064                    /usr/lib/locale/locale-archive
    7f7d7797c000-7f7d77b36000 r-xp 00000000 fc:01 1180226                    /lib/x86_64-linux-gnu/libc-2.19.so
    7f7d77b36000-7f7d77d36000 ---p 001ba000 fc:01 1180226                    /lib/x86_64-linux-gnu/libc-2.19.so
    7f7d77d36000-7f7d77d3a000 r--p 001ba000 fc:01 1180226                    /lib/x86_64-linux-gnu/libc-2.19.so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/plan9/mkall.sh

    	mkerrors=
    	mksyscall="go run mksyscall.go -l32 -plan9 -tags plan9,386"
    	mksysnum="./mksysnum_plan9.sh /n/sources/plan9/sys/src/libc/9syscall/sys.h"
    	mktypes="XXX"
    	;;
    plan9_amd64)
    	mkerrors=
    	mksyscall="go run mksyscall.go -l32 -plan9 -tags plan9,amd64"
    	mksysnum="./mksysnum_plan9.sh /n/sources/plan9/sys/src/libc/9syscall/sys.h"
    	mktypes="XXX"
    	;;
    plan9_arm)
    	mkerrors=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryBinariesIntegrationTest.groovy

    apply plugin: "cpp"
    apply plugin: "c"
    
    model {
        components {
            libCpp(NativeLibrarySpec)
            libC(NativeLibrarySpec)
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib library: 'libCpp', linkage: 'static'
                    c.lib library: 'libC', linkage: 'static'
                }
            }
        }
    }
    """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. src/syscall/mksyscall_libc.pl

    	# So file name.
    	if($aix) {
    		if($modname eq "") {
    			$modname = "libc.a/shr_64.o";
    		} else {
    			print STDERR "$func: only syscall using libc are available\n";
    			$errors = 1;
    			next;
    		}
    
    	}
    	if($solaris) {
    		if($modname eq "") {
    			$modname = "libc";
    		}
    		$modname .= ".so";
    
    	}
    
    	# System call name.
    	if($sysname eq "") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 11:28:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. src/syscall/exec_aix_test.go

    // license that can be found in the LICENSE file.
    
    //go:build aix
    
    package syscall
    
    import "unsafe"
    
    //go:cgo_import_dynamic libc_Getpgid getpgid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Getpgrp getpgrp "libc.a/shr_64.o"
    
    //go:linkname libc_Getpgid libc_Getpgid
    //go:linkname libc_Getpgrp libc_Getpgrp
    
    var (
    	libc_Getpgid,
    	libc_Getpgrp libcFunc
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/runtime/cgo/openbsd.go

    // license that can be found in the LICENSE file.
    
    //go:build openbsd
    
    package cgo
    
    import _ "unsafe" // for go:linkname
    
    // Supply __guard_local because we don't link against the standard
    // OpenBSD crt0.o and the libc dynamic library needs it.
    
    //go:linkname _guard_local __guard_local
    
    var _guard_local uintptr
    
    // This is normally marked as hidden and placed in the
    // .openbsd.randomdata section.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 566 bytes
    - Viewed (0)
  9. src/runtime/sys_openbsd_amd64.s

    	MOVQ	DX, (5*8)(DI) // r2
    
    	// Standard libc functions return -1 on error
    	// and set errno.
    	CMPL	AX, $-1	      // Note: high 32 bits are junk
    	JNE	ok
    
    	// Get error code from libc.
    	CALL	libc_errno(SB)
    	MOVLQSX	(AX), AX
    	MOVQ	(SP), DI
    	MOVQ	AX, (6*8)(DI) // err
    
    ok:
    	XORL	AX, AX        // no error (it's ignored anyway)
    	RET
    
    // syscallX calls a function in libc on behalf of the syscall package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  10. src/runtime/sys_openbsd.go

    	KeepAlive(arg) // Just for consistency. Arg of course needs to be kept alive for the start function.
    	return ret
    }
    func pthread_create_trampoline()
    
    // Tell the linker that the libc_* functions are to be found
    // in a system library, with the libc_ prefix missing.
    
    //go:cgo_import_dynamic libc_pthread_attr_init pthread_attr_init "libpthread.so"
    //go:cgo_import_dynamic libc_pthread_attr_destroy pthread_attr_destroy "libpthread.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 03:11:18 UTC 2021
    - 2.6K bytes
    - Viewed (0)
Back to top