Author: vitek
Date: Tue Mar 4 15:17:30 2008
New Revision: 633703
URL: http://svn.apache.org/viewvc?rev=633703&view=rev
Log:
2008-03-04 Travis Vitek <[EMAIL PROTECTED]>
Merged rev 629291 from trunk
2008-02-19 Martin Sebor <[EMAIL PROTECTED]>
STDCXX-735
* tests/src/process.cpp (EINTR, SIGALRM): Defined to the known
Linux value for EDG eccp in strict mode if not already #defined.
Modified:
stdcxx/branches/4.2.x/tests/src/process.cpp
Modified: stdcxx/branches/4.2.x/tests/src/process.cpp
URL:
http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/tests/src/process.cpp?rev=633703&r1=633702&r2=633703&view=diff
==============================================================================
--- stdcxx/branches/4.2.x/tests/src/process.cpp (original)
+++ stdcxx/branches/4.2.x/tests/src/process.cpp Tue Mar 4 15:17:30 2008
@@ -51,6 +51,10 @@
# define E2BIG 7 /* AIX, HP-UX, Linux, Solaris */
#endif
+#ifndef EINTR
+# define EINTR 4
+#endif
+
#ifndef SIGCHLD
# if defined (_RWSTD_OS_AIX) || defined (_RWSTD_OS_OSF)
// AIX, Tru64
@@ -64,6 +68,10 @@
#endif
// all known Unices
+#ifndef SIGALRM
+# define SIGALRM 14
+#endif
+
#ifndef SIGHUP
# define SIGHUP 1
#endif