SConscript (5548:19d45fa7315c) SConscript (5800:19c06c037040)
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 67 unchanged lines hidden (view full) ---

76Source('stats/statdb.cc')
77Source('stats/text.cc')
78Source('stats/visit.cc')
79
80if env['USE_MYSQL']:
81 Source('mysql.cc')
82 Source('stats/mysql.cc')
83
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 67 unchanged lines hidden (view full) ---

76Source('stats/statdb.cc')
77Source('stats/text.cc')
78Source('stats/visit.cc')
79
80if env['USE_MYSQL']:
81 Source('mysql.cc')
82 Source('stats/mysql.cc')
83
84TraceFlag('Annotate')
85TraceFlag('GDBAcc')
86TraceFlag('GDBExtra')
87TraceFlag('GDBMisc')
88TraceFlag('GDBRead')
89TraceFlag('GDBRecv')
90TraceFlag('GDBSend')
91TraceFlag('GDBWrite')
92TraceFlag('SQL')
93TraceFlag('StatEvents')
84TraceFlag('Annotate', "State machine annotation debugging")
85TraceFlag('GDBAcc', "Remote debugger accesses")
86TraceFlag('GDBExtra', "Dump extra information on reads and writes")
87TraceFlag('GDBMisc', "Breakpoints, traps, watchpoints, etc.")
88TraceFlag('GDBRead', "Reads to the remote address space")
89TraceFlag('GDBRecv', "Messages received from the remote application")
90TraceFlag('GDBSend', "Messages sent to the remote application")
91TraceFlag('GDBWrite', "Writes to the remote address space")
92TraceFlag('SQL', "SQL queries sent to the server")
93TraceFlag('StatEvents', "Statistics event tracking")
94
94
95CompoundFlag('GDBAll', [ 'GDBMisc', 'GDBAcc', 'GDBRead', 'GDBWrite', 'GDBSend',
96 'GDBRecv', 'GDBExtra' ])
95CompoundFlag('GDBAll',
96 [ 'GDBMisc', 'GDBAcc', 'GDBRead', 'GDBWrite', 'GDBSend', 'GDBRecv',
97 'GDBExtra' ],
98 desc="All Remote debugging flags")