Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 537 for libc (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build 386 && openbsd
    
    package unix
    
    // Deprecated: Use libc wrappers instead of direct syscalls.
    const (
    	SYS_EXIT           = 1   // { void sys_exit(int rval); }
    	SYS_FORK           = 2   // { int sys_fork(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_386.s

    	MOVL	bx-4(SP),  BX
    	RET
    
    TEXT runtimeĀ·cgoSigtramp(SB),NOSPLIT,$0
    	JMP	runtimeĀ·sigtramp(SB)
    
    // For cgo unwinding to work, this function must look precisely like
    // the one in glibc. The glibc source code is:
    // https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/unix/sysv/linux/i386/libc_sigaction.c;h=0665b41bbcd0986f0b33bf19a7ecbcedf9961d0a#l59
    // The code that cares about the precise instructions used is:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && openbsd
    
    package unix
    
    // Deprecated: Use libc wrappers instead of direct syscalls.
    const (
    	SYS_EXIT           = 1   // { void sys_exit(int rval); }
    	SYS_FORK           = 2   // { int sys_fork(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. src/runtime/race.go

    }
    
    //go:nosplit
    func raceinit() (gctx, pctx uintptr) {
    	lockInit(&raceFiniLock, lockRankRaceFini)
    
    	// On most machines, cgo is required to initialize libc, which is used by race runtime.
    	if !iscgo && GOOS != "darwin" {
    		throw("raceinit: race build must use cgo")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. src/syscall/syscall_solaris.go

    //sys	recvmsg(s int, msg *Msghdr, flags int) (n int, err error) = libsocket.__xnet_recvmsg
    //sys	getexecname() (path unsafe.Pointer, err error) = libc.getexecname
    //sys	utimensat(dirfd int, path string, times *[2]Timespec, flag int) (err error)
    
    func Getexecname() (path string, err error) {
    	ptr, err := getexecname()
    	if err != nil {
    		return "", err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // to figure it out.
    // TODO(******@****.***): uses autoconf to detect whether ::std::wstring
    //   is available.
    
    // Cygwin 1.7 and below doesn't support ::std::wstring.
    // Solaris' libc++ doesn't support it either.  Android has
    // no support for it at least as recent as Froyo (2.2).
    # define GTEST_HAS_STD_WSTRING \
        (!(GTEST_OS_LINUX_ANDROID || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // to figure it out.
    // TODO(******@****.***): uses autoconf to detect whether ::std::wstring
    //   is available.
    
    // Cygwin 1.7 and below doesn't support ::std::wstring.
    // Solaris' libc++ doesn't support it either.  Android has
    // no support for it at least as recent as Froyo (2.2).
    # define GTEST_HAS_STD_WSTRING \
        (!(GTEST_OS_LINUX_ANDROID || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  8. src/syscall/syscall_aix.go

    }
    
    // fcntl must never be called with cmd=F_DUP2FD because it doesn't work on AIX
    // There is no way to create a custom fcntl and to keep //sys fcntl easily,
    // because we need fcntl name for its libc symbol. This is linked with the script.
    // But, as fcntl is currently not exported and isn't called with F_DUP2FD,
    // it doesn't matter.
    //sys	fcntl(fd int, cmd int, arg int) (val int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/os/exec/exec_test.go

    	}
    
    	// Since this test is not running in parallel, we don't expect any new file
    	// descriptors to be opened while it runs. However, if there are additional
    	// FDs present at the start of the test (for example, opened by libc), those
    	// may be closed due to a timeout of some sort. Allow those to go away, but
    	// check that no new FDs are added.
    	for _, fd := range openFDs() {
    		if !old[fd] {
    			t.Errorf("leaked file descriptor %v", fd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  10. src/runtime/crash_cgo_test.go

    		t.Skipf("skipping test on %s", runtime.GOOS)
    	}
    	got := runTestProg(t, "testprogcgo", "StackSwitchCallback")
    	skip := "SKIP\n"
    	if got == skip {
    		t.Skip("skipping on musl/bionic libc")
    	}
    	want := "OK\n"
    	if got != want {
    		t.Errorf("expected %q, got %v", want, got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (1)
Back to top