summaryrefslogtreecommitdiff
path: root/libgo/go/syscall/libcall_posix_largefile.go
blob: acfafecc58171f9f5eb5b24a4fa75fcd10ea4e30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// POSIX library calls on systems which use the largefile interface.

package syscall

//sys	Fstat(fd int, stat *Stat_t) (errno int)
//fstat64(fd int, stat *Stat_t) int

//sys	Ftruncate(fd int, length int64) (errno int)
//ftruncate64(fd int, length Offset_t) int

//sys	Lstat(path string, stat *Stat_t) (errno int)
//lstat64(path *byte, stat *Stat_t) int

//sys	mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, errno int)
//mmap64(addr *byte, length Size_t, prot int, flags int, fd int, offset Offset_t) *byte

//sys	Open(path string, mode int, perm uint32) (fd int, errno int)
//open64(path *byte, mode int, perm Mode_t) int

//sys	Pread(fd int, p []byte, offset int64) (n int, errno int)
//pread64(fd int, buf *byte, count Size_t, offset Offset_t) Ssize_t

//sys	Pwrite(fd int, p []byte, offset int64) (n int, errno int)
//pwrite64(fd int, buf *byte, count Size_t, offset Offset_t) Ssize_t

//sys	Seek(fd int, offset int64, whence int) (off int64, errno int)
//lseek64(fd int, offset Offset_t, whence int) Offset_t

//sys	Stat(path string, stat *Stat_t) (errno int)
//stat64(path *byte, stat *Stat_t) int

//sys	Truncate(path string, length int64) (errno int)
//truncate64(path *byte, length Offset_t) int