Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
5f8090a4
Commit
5f8090a4
authored
Dec 15, 2011
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
syscall: Move Errno into its own file, for RTEMS.
From-SVN: r182356
parent
aebac0ca
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
22 deletions
+28
-22
libgo/Makefile.am
+1
-0
libgo/Makefile.in
+1
-0
libgo/go/syscall/syscall_errno.go
+26
-0
libgo/go/syscall/syscall_unix.go
+0
-22
No files found.
libgo/Makefile.am
View file @
5f8090a4
...
...
@@ -1549,6 +1549,7 @@ endif
go_base_syscall_files
=
\
go/syscall/env_unix.go
\
go/syscall/syscall_errno.go
\
go/syscall/libcall_support.go
\
go/syscall/libcall_posix.go
\
go/syscall/socket.go
\
...
...
libgo/Makefile.in
View file @
5f8090a4
...
...
@@ -1886,6 +1886,7 @@ go_unicode_utf8_files = \
@LIBGO_IS_LINUX_TRUE@
syscall_netlink_file
=
go/syscall/netlink_linux.go
go_base_syscall_files
=
\
go/syscall/env_unix.go
\
go/syscall/syscall_errno.go
\
go/syscall/libcall_support.go
\
go/syscall/libcall_posix.go
\
go/syscall/socket.go
\
...
...
libgo/go/syscall/syscall_errno.go
0 → 100644
View file @
5f8090a4
// 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.
package
syscall
// An Errno is an unsigned number describing an error condition.
// It implements the error interface. The zero Errno is by convention
// a non-error, so code to convert from Errno to error should use:
// err = nil
// if errno != 0 {
// err = errno
// }
type
Errno
uintptr
func
(
e
Errno
)
Error
()
string
{
return
Errstr
(
int
(
e
))
}
func
(
e
Errno
)
Temporary
()
bool
{
return
e
==
EINTR
||
e
==
EMFILE
||
e
.
Timeout
()
}
func
(
e
Errno
)
Timeout
()
bool
{
return
e
==
EAGAIN
||
e
==
EWOULDBLOCK
||
e
==
ETIMEDOUT
}
libgo/go/syscall/syscall_unix.go
View file @
5f8090a4
...
...
@@ -157,25 +157,3 @@ func Mmap(fd int, offset int64, length int, prot int, flags int) (data []byte, e
func
Munmap
(
b
[]
byte
)
(
err
error
)
{
return
mapper
.
Munmap
(
b
)
}
// An Errno is an unsigned number describing an error condition.
// It implements the error interface. The zero Errno is by convention
// a non-error, so code to convert from Errno to error should use:
// err = nil
// if errno != 0 {
// err = errno
// }
type
Errno
uintptr
func
(
e
Errno
)
Error
()
string
{
return
Errstr
(
int
(
e
))
}
func
(
e
Errno
)
Temporary
()
bool
{
return
e
==
EINTR
||
e
==
EMFILE
||
e
.
Timeout
()
}
func
(
e
Errno
)
Timeout
()
bool
{
return
e
==
EAGAIN
||
e
==
EWOULDBLOCK
||
e
==
ETIMEDOUT
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment