diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-10-17 17:44:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-10-17 17:44:39 +0000 |
commit | 23530f503dcd13b641c1308097f5e3392ec85bf7 (patch) | |
tree | 7b20ee347939a2bcbf17eed9410a0cd1fe983f0b /lib/libc/arch | |
parent | 4ffeb47e1cdc4d287de5c609e3ac3797499b1be2 (diff) |
damn it, i have had it with this untested weak shit
Diffstat (limited to 'lib/libc/arch')
-rw-r--r-- | lib/libc/arch/sparc/SYS.h | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/lib/libc/arch/sparc/SYS.h b/lib/libc/arch/sparc/SYS.h index ce336d37461..82471d1a918 100644 --- a/lib/libc/arch/sparc/SYS.h +++ b/lib/libc/arch/sparc/SYS.h @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $OpenBSD: SYS.h,v 1.6 2000/10/16 14:25:04 deraadt Exp $ + * $OpenBSD: SYS.h,v 1.7 2000/10/17 17:44:38 deraadt Exp $ */ #include <machine/asm.h> @@ -43,16 +43,10 @@ #ifdef __STDC__ #define _CAT(x,y) x##y -#define __ENTRY(p,x) \ - .weak _C_LABEL(x); \ - _C_LABEL(x) = _C_LABEL(p##x); \ - ENTRY(p##x) +#define __ENTRY(p,x) ENTRY(p##x) #else #define _CAT(x,y) x/**/y -#define __ENTRY(p,x) \ - .weak _C_LABEL(x); \ - _C_LABEL(x) = _C_LABEL(p/**/x); \ - ENTRY(p/**/x) +#define __ENTRY(p,x) ENTRY(p/**/x) #endif /* @@ -92,6 +86,7 @@ __ENTRY(p,x); mov (_CAT(SYS_,y))|SYSCALL_G2RFLAG,%g1; add %o7,8,%g2; \ t ST_SYSCALL; ERROR() +#ifdef _THREAD_SAFE /* * For the thread_safe versions, we prepend _thread_sys_ to the function * name so that the 'C' wrapper can go around the real name. @@ -100,4 +95,14 @@ # define RSYSCALL(x) __RSYSCALL(_thread_sys_,x) # define PSEUDO(x,y) __PSEUDO(_thread_sys_,x,y) # define SYSENTRY(x) __ENTRY(_thread_sys_,x) +#else _THREAD_SAFE +/* + * The non-threaded library defaults to traditional syscalls where + * the function name matches the syscall name. + */ +# define SYSCALL(x) __SYSCALL(,x) +# define RSYSCALL(x) __RSYSCALL(,x) +# define PSEUDO(x,y) __PSEUDO(,x,y) +# define SYSENTRY(x) __ENTRY(,x) +#endif _THREAD_SAFE .globl cerror |