ossp-pkg/ex/ex.h 1.18 -> 1.19
--- ex.h 2002/03/30 18:56:02 1.18
+++ ex.h 2003/01/06 15:31:24 1.19
@@ -1,8 +1,8 @@
/*
-** OSSP ex - Exception Handling Library
-** Copyright (c) 2002 Ralf S. Engelschall <rse@engelschall.com>
-** Copyright (c) 2002 The OSSP Project <http://www.ossp.org/>
-** Copyright (c) 2002 Cable & Wireless Deutschland <http://www.cw.com/de/>
+** OSSP ex - Exception Handling
+** Copyright (c) 2002-2003 Ralf S. Engelschall <rse@engelschall.com>
+** Copyright (c) 2002-2003 The OSSP Project <http://www.ossp.org/>
+** Copyright (c) 2002-2003 Cable & Wireless Deutschland <http://www.cw.com/de/>
**
** This file is part of OSSP ex, an exception handling library
** which can be found at http://www.ossp.org/pkg/lib/ex/.
@@ -56,7 +56,7 @@
/* the machine context */
#if defined(__EX_MCTX_MCSC__)
#include <ucontext.h> /* POSIX.1 ucontext(3) */
-#define __ex_mctx_struct ucontext_t uc;
+#define __ex_mctx_struct ucontext_t uc;
#define __ex_mctx_save(mctx) (getcontext(&(mctx)->uc) == 0)
#define __ex_mctx_restored(mctx) /* noop */
#define __ex_mctx_restore(mctx) (void)setcontext(&(mctx)->uc)
@@ -86,8 +86,8 @@
void *ex_object;
void *ex_value;
/* throw point */
- char *ex_file;
- int ex_line;
+ char *ex_file;
+ int ex_line;
char *ex_func;
} ex_t;
@@ -132,7 +132,7 @@
/* the termination handler */
typedef void (*ex_term_cb_t)(ex_t *);
-extern ex_term_cb_t __ex_terminate;
+extern ex_term_cb_t __ex_terminate;
extern void __ex_terminate_default(ex_t *e);
/* the block for trying execution */
|
|