Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for libc_ (0.04 sec)

  1. 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)
  2. src/runtime/sys_openbsd2.go

    //go:cgo_import_dynamic libc_munmap munmap "libc.so"
    //go:cgo_import_dynamic libc_madvise madvise "libc.so"
    
    //go:cgo_import_dynamic libc_open open "libc.so"
    //go:cgo_import_dynamic libc_close close "libc.so"
    //go:cgo_import_dynamic libc_read read "libc.so"
    //go:cgo_import_dynamic libc_write write "libc.so"
    //go:cgo_import_dynamic libc_pipe2 pipe2 "libc.so"
    
    //go:cgo_import_dynamic libc_clock_gettime clock_gettime "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. 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)
  4. src/runtime/sys_libc.go

    		// first call on an M, until that libcCall instance
    		// returns.  Reentrance only matters for signals, as
    		// libc never calls back into Go.  The tricky case is
    		// where we call libcX from an M and record g/pc/sp.
    		// Before that call returns, a signal arrives on the
    		// same M and the signal handling code calls another
    		// libc function.  We don't want that second libcCall
    		// from within the handler to be recorded, and we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. src/internal/syscall/unix/at_solaris.go

    func rawSyscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)
    
    //go:cgo_import_dynamic libc_fstatat fstatat "libc.so"
    //go:cgo_import_dynamic libc_openat openat "libc.so"
    //go:cgo_import_dynamic libc_unlinkat unlinkat "libc.so"
    //go:cgo_import_dynamic libc_uname uname "libc.so"
    
    const (
    	AT_REMOVEDIR        = 0x1
    	AT_SYMLINK_NOFOLLOW = 0x1000
    
    	UTIME_OMIT = -0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 814 bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/go_test.go

    		want []string
    	}{
    		{
    			libs: []string{"libc.so"},
    			want: []string{"libc.so"},
    		},
    		{
    			libs: []string{"libc.so", "libc.so.96.1"},
    			want: []string{"libc.so.96.1"},
    		},
    		{
    			libs: []string{"libc.so.96.1", "libc.so"},
    			want: []string{"libc.so.96.1"},
    		},
    		{
    			libs: []string{"libc.a", "libc.so.96.1"},
    			want: []string{"libc.a", "libc.so.96.1"},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. src/runtime/sys_openbsd1.go

    }
    
    //go:cgo_import_dynamic libc_thrsleep __thrsleep "libc.so"
    //go:cgo_import_dynamic libc_thrwakeup __thrwakeup "libc.so"
    //go:cgo_import_dynamic libc_sched_yield sched_yield "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 03:11:18 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. src/runtime/syscall2_solaris.go

    //go:cgo_import_dynamic libc_ioctl ioctl "libc.so"
    //go:cgo_import_dynamic libc_setgid setgid "libc.so"
    //go:cgo_import_dynamic libc_setgroups setgroups "libc.so"
    //go:cgo_import_dynamic libc_setrlimit setrlimit "libc.so"
    //go:cgo_import_dynamic libc_setsid setsid "libc.so"
    //go:cgo_import_dynamic libc_setuid setuid "libc.so"
    //go:cgo_import_dynamic libc_setpgid setpgid "libc.so"
    //go:cgo_import_dynamic libc_syscall syscall "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/runtime/syscall_aix.go

    //go:cgo_import_dynamic libc_chdir chdir "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_chroot chroot "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_dup2 dup2 "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_execve execve "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_fcntl fcntl "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_fork fork "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/runtime/os_illumos.go

    import (
    	"unsafe"
    )
    
    //go:cgo_import_dynamic libc_getrctl getrctl "libc.so"
    //go:cgo_import_dynamic libc_rctlblk_get_local_action rctlblk_get_local_action "libc.so"
    //go:cgo_import_dynamic libc_rctlblk_get_local_flags rctlblk_get_local_flags "libc.so"
    //go:cgo_import_dynamic libc_rctlblk_get_value rctlblk_get_value "libc.so"
    //go:cgo_import_dynamic libc_rctlblk_size rctlblk_size "libc.so"
    
    //go:linkname libc_getrctl libc_getrctl
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 18:06:12 UTC 2019
    - 3.9K bytes
    - Viewed (0)
Back to top