Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libgloss/microblaze/linux-syscalls.S')
-rw-r--r--libgloss/microblaze/linux-syscalls.S45
1 files changed, 0 insertions, 45 deletions
diff --git a/libgloss/microblaze/linux-syscalls.S b/libgloss/microblaze/linux-syscalls.S
deleted file mode 100644
index 506de78fd..000000000
--- a/libgloss/microblaze/linux-syscalls.S
+++ /dev/null
@@ -1,45 +0,0 @@
-/* linux-syscalls - Syscall interface to microblaze linux
- *
- * Copyright (c) 2011 Edgar E. Iglesias
- *
- * The authors hereby grant permission to use, copy, modify, distribute,
- * and license this software and its documentation for any purpose, provided
- * that existing copyright notices are retained in all copies and that this
- * notice is included verbatim in any distributions. No written agreement,
- * license, or royalty fee is required for any of the authorized uses.
- * Modifications to this software may be copyrighted by their authors
- * and need not follow the licensing terms described here, provided that
- * the new terms are clearly indicated on the first page of each file where
- * they apply.
- */
-
-#include "linux-syscalls.h"
-
-#define FUNC(name) .type name, %function; name:
-
-#define GLOBAL(name) .global name; FUNC(name)
-#define SIZE(name) .size name, .-name
-
-# define SYSCALL_BODY(name) \
- addik r12, r0, SYS_ ## name; \
- brki r14, 8; \
- rtsd r15, 8; \
- nop;
-
-# define SYSCALL(name) \
- GLOBAL(_ ## name); \
- SYSCALL_BODY(name); \
- SIZE(_ ## name)
-
-SYSCALL(brk)
-SYSCALL(exit)
-SYSCALL(read)
-SYSCALL(write)
-SYSCALL(open)
-SYSCALL(close)
-SYSCALL(lseek)
-SYSCALL(fstat)
-SYSCALL(unlink)
-SYSCALL(getpid)
-SYSCALL(kill)
-SYSCALL(rt_sigaction)