Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gcc-cobol
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COBOLworx
gcc-cobol
Commits
f58abe3c
Commit
f58abe3c
authored
13 years ago
by
Ian Lance Taylor
Browse files
Options
Downloads
Patches
Plain Diff
syscall: Remove Linux system calls not available in older glibcs.
From-SVN: r180784
parent
67266ebb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libgo/go/syscall/libcall_linux.go
+9
-6
9 additions, 6 deletions
libgo/go/syscall/libcall_linux.go
with
9 additions
and
6 deletions
libgo/go/syscall/libcall_linux.go
+
9
−
6
View file @
f58abe3c
...
@@ -186,8 +186,9 @@ func PtraceDetach(pid int) (errno int) { return ptrace(PTRACE_DETACH, pid, 0, 0)
...
@@ -186,8 +186,9 @@ func PtraceDetach(pid int) (errno int) { return ptrace(PTRACE_DETACH, pid, 0, 0)
//sys Faccessat(dirfd int, path string, mode uint32, flags int) (errno int)
//sys Faccessat(dirfd int, path string, mode uint32, flags int) (errno int)
//faccessat(dirfd int, pathname *byte, mode int, flags int) int
//faccessat(dirfd int, pathname *byte, mode int, flags int) int
//sys Fallocate(fd int, mode uint32, off int64, len int64) (errno int)
// FIXME: Only in glibc 2.10 and later.
//fallocate(fd int, mode int, offset Offset_t, len Offset_t) int
// //sys Fallocate(fd int, mode uint32, off int64, len int64) (errno int)
// //fallocate(fd int, mode int, offset Offset_t, len Offset_t) int
//sys Fchmodat(dirfd int, path string, mode uint32, flags int) (errno int)
//sys Fchmodat(dirfd int, path string, mode uint32, flags int) (errno int)
//fchmodat(dirfd int, pathname *byte, mode Mode_t, flags int) int
//fchmodat(dirfd int, pathname *byte, mode Mode_t, flags int) int
...
@@ -223,8 +224,9 @@ func PtraceDetach(pid int) (errno int) { return ptrace(PTRACE_DETACH, pid, 0, 0)
...
@@ -223,8 +224,9 @@ func PtraceDetach(pid int) (errno int) { return ptrace(PTRACE_DETACH, pid, 0, 0)
//sysnb InotifyInit() (fd int, errno int)
//sysnb InotifyInit() (fd int, errno int)
//inotify_init() int
//inotify_init() int
//sysnb InotifyInit1(flags int) (fd int, errno int)
// FIXME: Only in glibc 2.9 and later.
//inotify_init1(flags int) int
// //sysnb InotifyInit1(flags int) (fd int, errno int)
// //inotify_init1(flags int) int
//sysnb InotifyRmWatch(fd int, watchdesc uint32) (success int, errno int)
//sysnb InotifyRmWatch(fd int, watchdesc uint32) (success int, errno int)
//inotify_rm_watch(fd int, wd uint32) int
//inotify_rm_watch(fd int, wd uint32) int
...
@@ -298,8 +300,9 @@ func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n i
...
@@ -298,8 +300,9 @@ func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n i
// //sys Statfs(path string, buf *Statfs_t) (errno int)
// //sys Statfs(path string, buf *Statfs_t) (errno int)
// //statfs(path *byte, buf *Statfs_t) int
// //statfs(path *byte, buf *Statfs_t) int
//sys SyncFileRange(fd int, off int64, n int64, flags int) (errno int)
// FIXME: Only in glibc 2.6 and later.
//sync_file_range(fd int, off Offset_t, n Offset_t, flags uint) int
// //sys SyncFileRange(fd int, off int64, n int64, flags int) (errno int)
// //sync_file_range(fd int, off Offset_t, n Offset_t, flags uint) int
// FIXME: mksysinfo Sysinfo_t
// FIXME: mksysinfo Sysinfo_t
// //sysnb Sysinfo(info *Sysinfo_t) (errno int)
// //sysnb Sysinfo(info *Sysinfo_t) (errno int)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment