aboutsummaryrefslogtreecommitdiff
path: root/pthreads/tests/exception3.c
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2011-07-18 10:51:09 +0200
committermarha <marha@users.sourceforge.net>2011-07-18 10:51:09 +0200
commit3c0d2312573b81e3067bea610a58b1940c075e05 (patch)
tree3f025a27d813374f225957801226aa8ee829a33a /pthreads/tests/exception3.c
parentba033884541714680fd7552ab9d6c8817650f7d8 (diff)
parent88101146f2ec7d53ffb793e365f05097ffd35fd3 (diff)
downloadvcxsrv-3c0d2312573b81e3067bea610a58b1940c075e05.tar.gz
vcxsrv-3c0d2312573b81e3067bea610a58b1940c075e05.tar.bz2
vcxsrv-3c0d2312573b81e3067bea610a58b1940c075e05.zip
Merge remote-tracking branch 'origin/released'
Conflicts: X11/Xfuncproto.h.in X11/configure.ac X11/keysymdef.h freetype/include/freetype/internal/pcftypes.h freetype/src/cache/ftcbasic.c freetype/src/cache/ftccmap.c mesalib/src/glsl/ir.h mesalib/src/glsl/link_functions.cpp mesalib/src/mesa/main/dlist.c mesalib/src/mesa/program/prog_optimize.c mesalib/src/mesa/state_tracker/st_program.c pthreads/Makefile
Diffstat (limited to 'pthreads/tests/exception3.c')
-rw-r--r--pthreads/tests/exception3.c23
1 files changed, 5 insertions, 18 deletions
diff --git a/pthreads/tests/exception3.c b/pthreads/tests/exception3.c
index 9a70a405a..65bcdbef3 100644
--- a/pthreads/tests/exception3.c
+++ b/pthreads/tests/exception3.c
@@ -62,7 +62,7 @@
*
* Assumptions:
* - have working pthread_create, pthread_self, pthread_mutex_lock/unlock
- * pthread_testcancel, pthread_cancel, pthread_join
+ * pthread_testcancel, pthread_cancel
*
* Pass Criteria:
* - Process returns zero exit status.
@@ -101,7 +101,7 @@ terminateFunction ()
{
assert(pthread_mutex_lock(&caughtLock) == 0);
caught++;
-#if 1
+#if 0
{
FILE * fp = fopen("pthread.log", "a");
fprintf(fp, "Caught = %d\n", caught);
@@ -110,18 +110,6 @@ terminateFunction ()
#endif
assert(pthread_mutex_unlock(&caughtLock) == 0);
-#if defined(__MINGW32__)
- /*
- * Seems to work. That is, threads exit and the process
- * continues. Note: need to check correct POSIX behaviour.
- * My guess is: this is because of the
- * eh incompatibility between g++ and MSVC++. That is,
- * an exception thrown in g++ code doesn't propogate
- * through or to MSVC++ code, and vice versa.
- * Applications should probably not depend on this.
- */
- pthread_exit((void *) 0);
-#else
/*
* Notes from the MSVC++ manual:
* 1) A term_func() should call exit(), otherwise
@@ -129,13 +117,12 @@ terminateFunction ()
* abort() raises SIGABRT. The default signal handler
* for all signals terminates the calling program with
* exit code 3.
- * 2) A term_func() must not throw an exception. Therefore
+ * 2) A term_func() must not throw an exception. Dev: Therefore
* term_func() should not call pthread_exit() if an
- * an exception-using version of pthreads-win32 library
+ * exception-using version of pthreads-win32 library
* is being used (i.e. either pthreadVCE or pthreadVSE).
*/
exit(0);
-#endif
}
void *
@@ -172,7 +159,7 @@ main()
assert(pthread_create(&et[i], NULL, exceptionedThread, NULL) == 0);
}
- Sleep(5000);
+ Sleep(NUMTHREADS * 100);
assert(caught == NUMTHREADS);