Whitespace.
This commit is contained in:
parent
7d46aa31f0
commit
b0df966c1e
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: SYS.h,v 1.7 2009/11/03 05:07:25 snj Exp $ */
|
||||
/* $NetBSD: SYS.h,v 1.8 2013/08/24 07:12:12 skrll Exp $ */
|
||||
|
||||
/* $OpenBSD: SYS.h,v 1.9 2001/09/20 20:52:09 millert Exp $ */
|
||||
|
||||
|
@ -44,7 +44,7 @@
|
|||
ldi __CONCAT(SYS_,x), %t1 !\
|
||||
.import __cerror, code !\
|
||||
comb,<> %r0, %t1, __cerror !\
|
||||
ldw HPPA_FRAME_ERP(%sr0,%sp), %rp
|
||||
ldw HPPA_FRAME_ERP(%sr0,%sp), %rp
|
||||
|
||||
#define PSEUDO(x,y) !\
|
||||
SYSENTRY(x) !\
|
||||
|
@ -65,7 +65,7 @@ SYSENTRY(x) !\
|
|||
SYSEXIT(x)
|
||||
|
||||
#define RSYSCALL(x) PSEUDO(x,x)
|
||||
#define RSYSCALL_NOERROR(x) PSEUDO_NOERROR(x,x)
|
||||
#define RSYSCALL_NOERROR(x) PSEUDO_NOERROR(x,x)
|
||||
|
||||
#ifdef WEAK_ALIAS
|
||||
#define WSYSCALL(weak,strong) !\
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: resumecontext.c,v 1.4 2011/09/19 21:24:57 joerg Exp $ */
|
||||
/* $NetBSD: resumecontext.c,v 1.5 2013/08/24 07:12:13 skrll Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -31,7 +31,7 @@
|
|||
|
||||
#include <sys/cdefs.h>
|
||||
#if defined(LIBC_SCCS) && !defined(lint)
|
||||
__RCSID("$NetBSD: resumecontext.c,v 1.4 2011/09/19 21:24:57 joerg Exp $");
|
||||
__RCSID("$NetBSD: resumecontext.c,v 1.5 2013/08/24 07:12:13 skrll Exp $");
|
||||
#endif
|
||||
|
||||
#include "namespace.h"
|
||||
|
@ -46,7 +46,7 @@ _resumecontext(void)
|
|||
ucontext_t uct;
|
||||
|
||||
(void)getcontext(&uct);
|
||||
if (uct.uc_link == NULL)
|
||||
if (uct.uc_link == NULL)
|
||||
exit(0);
|
||||
(void)setcontext(uct.uc_link);
|
||||
_exit(-1);
|
||||
|
|
Loading…
Reference in New Issue