aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/perf_plugin_datastore.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-12-01 09:17:27 +0000
committerChristian Grothoff <christian@grothoff.org>2011-12-01 09:17:27 +0000
commit6541f51cd40b8df8f424f7654380fec73241529e (patch)
tree9d7cd352deff6954144897afca08229f939a74a4 /src/datastore/perf_plugin_datastore.c
parent8e7e5b7c8ab504a686e52c36d210db86284b75f1 (diff)
downloadgnunet-6541f51cd40b8df8f424f7654380fec73241529e.tar.gz
gnunet-6541f51cd40b8df8f424f7654380fec73241529e.zip
LRN: Adding vectored exception handling for W32 (#1965)
Whenever an exception occurs, and the process is not being debugged, it will run a debugger specified by GNUNET_DEBUGGER environment variable, and wait for it to attach. The net effect is the same as using JIT debugging (AeDebug), but without the stack being broken by SEH (because VEH has a priority over SEH), which allows for fuller backtraces for any exception, not just for GNUNET_abort() calls.
Diffstat (limited to 'src/datastore/perf_plugin_datastore.c')
-rw-r--r--src/datastore/perf_plugin_datastore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datastore/perf_plugin_datastore.c b/src/datastore/perf_plugin_datastore.c
index 8f552c4eb..1498c7330 100644
--- a/src/datastore/perf_plugin_datastore.c
+++ b/src/datastore/perf_plugin_datastore.c
@@ -37,7 +37,7 @@
37 * those take too long to run them in the usual "make check" 37 * those take too long to run them in the usual "make check"
38 * sequence. Hence the value used for shipping is tiny. 38 * sequence. Hence the value used for shipping is tiny.
39 */ 39 */
40#define MAX_SIZE 1024LL * 1024 * 16 * 1 40#define MAX_SIZE 1024LL * 1024 * 16 * 10
41 41
42#define ITERATIONS 2 42#define ITERATIONS 2
43 43