summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2020-06-27 23:39:05 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2020-06-28 14:28:36 -0300
commitd5eff27c8dbb0b0c927e8ff4bde3d7eca9feced9 (patch)
tree8c5addbf41cfc04615cb68ed0343b6471fefe814
parent1a7ad0bcdd7dc639475112e2a15326ef2f09d4ce (diff)
downloadglibc-azanella/syscall-refactor.tar.gz
sysdep: Remove unix PSEUDO directivesazanella/syscall-refactor
-rw-r--r--sysdeps/unix/sysdep.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/sysdeps/unix/sysdep.h b/sysdeps/unix/sysdep.h
index f44e8b2839..2074192c89 100644
--- a/sysdeps/unix/sysdep.h
+++ b/sysdeps/unix/sysdep.h
@@ -77,26 +77,3 @@ typedef long int __syscall_arg_t;
#define inline_syscall_cancel(...) \
__syscall_ret (internal_syscall_cancel(__VA_ARGS__))
-
-/* Machine-dependent sysdep.h files are expected to define the macro
- PSEUDO (function_name, syscall_name) to emit assembly code to define the
- C-callable function FUNCTION_NAME to do system call SYSCALL_NAME.
- r0 and r1 are the system call outputs. MOVE(x, y) should be defined as
- an instruction such that "MOVE(r1, r0)" works. ret should be defined
- as the return instruction. */
-
-#ifndef SYS_ify
-#define SYS_ify(syscall_name) SYS_##syscall_name
-#endif
-
-/* Terminate a system call named SYM. This is used on some platforms
- to generate correct debugging information. */
-#ifndef PSEUDO_END
-#define PSEUDO_END(sym)
-#endif
-#ifndef PSEUDO_END_NOERRNO
-#define PSEUDO_END_NOERRNO(sym) PSEUDO_END(sym)
-#endif
-#ifndef PSEUDO_END_ERRVAL
-#define PSEUDO_END_ERRVAL(sym) PSEUDO_END(sym)
-#endif