You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2008/02/20 01:58:01 UTC

svn commit: r629291 - /stdcxx/trunk/tests/src/process.cpp

Author: sebor
Date: Tue Feb 19 16:57:58 2008
New Revision: 629291

URL: http://svn.apache.org/viewvc?rev=629291&view=rev
Log:
2008-02-19  Martin Sebor  <se...@roguewave.com>

	STDCXX-735
	* process.cpp (EINTR, SIGALRM): Defined to the known Linux
	value for EDG eccp in strict mode if not already #defined.

Modified:
    stdcxx/trunk/tests/src/process.cpp

Modified: stdcxx/trunk/tests/src/process.cpp
URL: http://svn.apache.org/viewvc/stdcxx/trunk/tests/src/process.cpp?rev=629291&r1=629290&r2=629291&view=diff
==============================================================================
--- stdcxx/trunk/tests/src/process.cpp (original)
+++ stdcxx/trunk/tests/src/process.cpp Tue Feb 19 16:57:58 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