aboutsummaryrefslogtreecommitdiff
path: root/src/monkey/gnunet_monkey_action.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/monkey/gnunet_monkey_action.h')
-rw-r--r--src/monkey/gnunet_monkey_action.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/monkey/gnunet_monkey_action.h b/src/monkey/gnunet_monkey_action.h
index dd96a03a5..d8af8d712 100644
--- a/src/monkey/gnunet_monkey_action.h
+++ b/src/monkey/gnunet_monkey_action.h
@@ -63,14 +63,18 @@ struct GNUNET_MONKEY_ACTION_Context
63 const char* gdb_in_use; 63 const char* gdb_in_use;
64 mi_stop* gdb_stop_reason; 64 mi_stop* gdb_stop_reason;
65 mi_frames* gdb_frames; 65 mi_frames* gdb_frames;
66 const char* gdb_null_variable;
67
68 /* Valgrind memcheck attributes */
69 char* valgrind_output;
66}; 70};
67 71
68 72
69int GNUNET_MONKEY_ACTION_report_file(struct GNUNET_MONKEY_ACTION_Context* cntxt, const char* dumpFileName); 73int GNUNET_MONKEY_ACTION_report_file(struct GNUNET_MONKEY_ACTION_Context* cntxt, const char* dumpFileName);
70int GNUNET_MONKEY_ACTION_report_email(struct GNUNET_MONKEY_ACTION_Context* cntxt); 74int GNUNET_MONKEY_ACTION_report_email(struct GNUNET_MONKEY_ACTION_Context* cntxt);
71int GNUNET_MONKEY_ACTION_rerun_with_valgrind(void);
72int GNUNET_MONKEY_ACTION_inspect_expression_database(struct GNUNET_MONKEY_ACTION_Context* cntxt); 75int GNUNET_MONKEY_ACTION_inspect_expression_database(struct GNUNET_MONKEY_ACTION_Context* cntxt);
73int GNUNET_MONKEY_ACTION_rerun_with_gdb(struct GNUNET_MONKEY_ACTION_Context* cntxt); 76int GNUNET_MONKEY_ACTION_rerun_with_gdb(struct GNUNET_MONKEY_ACTION_Context* cntxt);
77int GNUNET_MONKEY_ACTION_rerun_with_valgrind(struct GNUNET_MONKEY_ACTION_Context* cntxt);
74int GNUNET_MONKEY_ACTION_format_report(struct GNUNET_MONKEY_ACTION_Context* cntxt); 78int GNUNET_MONKEY_ACTION_format_report(struct GNUNET_MONKEY_ACTION_Context* cntxt);
75int GNUNET_MONKEY_ACTION_check_bug_redundancy(void); 79int GNUNET_MONKEY_ACTION_check_bug_redundancy(void);
76 80