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
1c69e5e2
Commit
1c69e5e2
authored
Feb 02, 2012
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
runtime: Correct ENOSYS functions.
From-SVN: r183852
parent
b6422b37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
16 deletions
+32
-16
libgo/runtime/go-nosys.c
+32
-16
No files found.
libgo/runtime/go-nosys.c
View file @
1c69e5e2
...
...
@@ -31,7 +31,8 @@ typedef off64_t loff_t;
int
epoll_create1
(
int
flags
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -42,7 +43,8 @@ faccessat (int fd __attribute__ ((unused)),
int
mode
__attribute__
((
unused
)),
int
flags
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -53,7 +55,8 @@ fchmodat (int dirfd __attribute__ ((unused)),
mode_t
mode
__attribute__
((
unused
)),
int
flags
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -65,7 +68,8 @@ fchownat (int dirfd __attribute__ ((unused)),
gid_t
group
__attribute__
((
unused
)),
int
flags
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -75,7 +79,8 @@ futimesat (int dirfd __attribute__ ((unused)),
const
char
*
pathname
__attribute__
((
unused
)),
const
struct
timeval
times
[
2
]
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -85,7 +90,8 @@ inotify_add_watch (int fd __attribute__ ((unused)),
const
char
*
pathname
__attribute__
((
unused
)),
uint32_t
mask
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -93,7 +99,8 @@ inotify_add_watch (int fd __attribute__ ((unused)),
int
inotify_init
(
void
)
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -102,7 +109,8 @@ int
inotify_rm_watch
(
int
fd
__attribute__
((
unused
)),
uint32_t
wd
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -112,7 +120,8 @@ mkdirat (int dirfd __attribute__ ((unused)),
const
char
*
pathname
__attribute__
((
unused
)),
mode_t
mode
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -123,7 +132,8 @@ mknodat (int dirfd __attribute__ ((unused)),
mode_t
mode
__attribute__
((
unused
)),
dev_t
dev
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -134,7 +144,8 @@ openat (int dirfd __attribute__ ((unused)),
int
oflag
__attribute__
((
unused
)),
...)
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -145,7 +156,8 @@ renameat (int olddirfd __attribute__ ((unused)),
int
newdirfd
__attribute__
((
unused
)),
const
char
*
newpath
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -158,7 +170,8 @@ splice (int fd __attribute__ ((unused)),
size_t
len
__attribute__
((
unused
)),
unsigned
int
flags
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -169,7 +182,8 @@ tee (int fd_in __attribute__ ((unused)),
size_t
len
__attribute__
((
unused
)),
unsigned
int
flags
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -179,7 +193,8 @@ unlinkat (int dirfd __attribute__ ((unused)),
const
char
*
pathname
__attribute__
((
unused
)),
int
flags
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
...
...
@@ -187,6 +202,7 @@ unlinkat (int dirfd __attribute__ ((unused)),
int
unshare
(
int
flags
__attribute__
((
unused
)))
{
return
ENOSYS
;
errno
=
ENOSYS
;
return
-
1
;
}
#endif
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