Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
f92bf002
Commit
f92bf002
authored
Apr 02, 2004
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ALPHA] Use raw asm instead of attributes for cond_syscall.
parent
6fc3e934
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
include/asm-alpha/unistd.h
include/asm-alpha/unistd.h
+11
-11
No files found.
include/asm-alpha/unistd.h
View file @
f92bf002
...
@@ -616,16 +616,16 @@ asmlinkage long sys_rt_sigaction(int sig,
...
@@ -616,16 +616,16 @@ asmlinkage long sys_rt_sigaction(int sig,
#endif
/* __KERNEL_SYSCALLS__ */
#endif
/* __KERNEL_SYSCALLS__ */
/*
/*
"Conditional" syscalls. What we want is
* "Conditional" syscalls
*
__attribute__((weak,alias("sys_ni_syscall")))
* What we want is __attribute__((weak,alias("sys_ni_syscall"))),
* but it doesn't work on all toolchains, so we just do it by hand.
but that raises the problem of what type to give the symbol. If we use
*
a prototype, it'll conflict with the definition given in this file and
* Note that we do *not* provide a parameter list to avoid
others. If we use __typeof, we discover that not all symbols actually
* conflicting with one of the syscall declarations in some
have declarations. If we use no prototype, then we get warnings from
* of the relevant header files (including this one).
-Wstrict-prototypes. Ho hum. */
*/
#define cond_syscall(x)
asmlinkage long x() __attribute__((weak,alias("sys_ni_syscall"))
);
#define cond_syscall(x)
asm(".weak\t" #x "\n" #x " = sys_ni_syscall"
);
#endif
/* _ALPHA_UNISTD_H */
#endif
/* _ALPHA_UNISTD_H */
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