Check-in Number:
|
4404 | |
Date: |
2004-Feb-11 09:34:46 (local)
2004-Feb-11 08:34:46 (UTC) |
User: | rse |
Branch: | |
Comment: |
Fixed OSSP ex support by internally using a non-conflicting
namespace for the OSSP ex API.
Submitted by: Kimura Fuyuki <fuyuki@nigredo.org> |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/sio/ChangeLog 1.4 -> 1.5
--- ChangeLog 2003/06/30 10:36:52 1.4
+++ ChangeLog 2004/02/11 08:34:46 1.5
@@ -11,6 +11,14 @@
This is a list of all changes to OSSP sio.
For a more brief summary please have a look at the NEWS file.
+ Changes between 0.9.2 and 0.9.3 (30-Jun-2003 to xx-Feb-2004)
+
+ ...
+
+ *) Fixed OSSP ex support by internally using a non-conflicting
+ namespace for the OSSP ex API.
+ [Kimura Fuyuki <fuyuki@nigredo.org>]
+
Changes between 0.9.1 and 0.9.2 (17-Jun-2003 to 30-Jun-2003)
*) Correctly check the "status" return value of waitpid(3)
|
|
ossp-pkg/sio/sio.c 1.24 -> 1.25
--- sio.c 2003/02/06 10:59:18 1.24
+++ sio.c 2004/02/11 08:34:46 1.25
@@ -47,6 +47,7 @@
/* support for OSSP ex based exception throwing */
#ifdef WITH_EX
+#define __EX_NS_UCCXX__
#include "ex.h"
#define SIO_RC(rv) \
( (rv) != SIO_OK && (ex_catching && !ex_shielding) \
|
|