Black Lives Matter. Support the Equal Justice Initiative.

Source file src/syscall/syscall_openbsd1.go

Documentation: syscall

     1  // Copyright 2020 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build openbsd && mips64
     6  // +build openbsd,mips64
     7  
     8  package syscall
     9  
    10  //sys	readlen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_READ
    11  //sys	writelen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_WRITE
    12  //sys	Seek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK
    13  //sys	getcwd(buf []byte) (n int, err error) = SYS___GETCWD
    14  //sys	sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) = SYS___SYSCTL
    15  

View as plain text