~bkerensa/ubuntu/raring/valgrind/merge-from-deb

« back to all changes in this revision

Viewing changes to coregrind/m_options.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-06-26 00:17:17 UTC
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20060626001717-qi51nzty57cb12q6
Tags: upstream-3.2.0
Import upstream version 3.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
   This file is part of Valgrind, a dynamic binary instrumentation
9
9
   framework.
10
10
 
11
 
   Copyright (C) 2000-2005 Nicholas Nethercote
 
11
   Copyright (C) 2000-2006 Nicholas Nethercote
12
12
      njn@valgrind.org
13
13
 
14
14
   This program is free software; you can redistribute it and/or
38
38
/* Define, and set defaults. */
39
39
VexControl VG_(clo_vex_control);
40
40
Bool   VG_(clo_error_limit)    = True;
 
41
Int    VG_(clo_error_exitcode) = 0;
41
42
Bool   VG_(clo_db_attach)      = False;
42
43
Char*  VG_(clo_db_command)     = GDB_PATH " -nw %f %p";
43
44
Int    VG_(clo_gen_suppressions) = 0;
54
55
Int    VG_(clo_input_fd)       = 0; /* stdin */
55
56
Int    VG_(clo_n_suppressions) = 0;
56
57
Char*  VG_(clo_suppressions)[VG_CLO_MAX_SFILES];
57
 
Bool   VG_(clo_profile)        = False;
58
58
UChar  VG_(clo_trace_flags)    = 0; // 00000000b
59
59
UChar  VG_(clo_profile_flags)  = 0; // 00000000b
60
 
Int    VG_(clo_trace_notbelow) = 0;
 
60
Int    VG_(clo_trace_notbelow) = 999999999;
61
61
Bool   VG_(clo_trace_syscalls) = False;
62
62
Bool   VG_(clo_trace_signals)  = False;
63
63
Bool   VG_(clo_trace_symtab)   = False;