Deleted Added
full compact
33c33
< * $FreeBSD: head/lib/libc/i386/SYS.h 184548 2008-11-02 01:28:47Z peter $
---
> * $FreeBSD: head/lib/libc/i386/SYS.h 240152 2012-09-05 21:41:05Z jilles $
39,40c39
< #define SYSCALL(x) 2: PIC_PROLOGUE; jmp PIC_PLT(HIDENAME(cerror)); \
< ENTRY(__CONCAT(__sys_,x)); \
---
> #define SYSCALL(x) ENTRY(__CONCAT(__sys_,x)); \
45c44,45
< mov __CONCAT($SYS_,x),%eax; KERNCALL; jb 2b
---
> mov __CONCAT($SYS_,x),%eax; KERNCALL; \
> jb HIDENAME(cerror)
49,50c49
< #define PSEUDO(x) 2: PIC_PROLOGUE; jmp PIC_PLT(HIDENAME(cerror)); \
< ENTRY(__CONCAT(__sys_,x)); \
---
> #define PSEUDO(x) ENTRY(__CONCAT(__sys_,x)); \
53c52,53
< mov __CONCAT($SYS_,x),%eax; KERNCALL; jb 2b; ret; \
---
> mov __CONCAT($SYS_,x),%eax; KERNCALL; \
> jb HIDENAME(cerror); ret; \