~ubuntu-branches/ubuntu/karmic/firebird2.1/karmic

« back to all changes in this revision

Viewing changes to src/jrd/vio_debug.h

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2008-05-26 23:59:25 UTC
  • Revision ID: james.westby@ubuntu.com-20080526235925-2pnqj6nxpppoeaer
Tags: upstream-2.1.0.17798-0.ds2
ImportĀ upstreamĀ versionĀ 2.1.0.17798-0.ds2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*      PROGRAM:        JRD Access Method
 
2
 *      MODULE:         vio_debug.h
 
3
 *      DESCRIPTION:    Definitions for tracing VIO activity
 
4
 *
 
5
 * The contents of this file are subject to the Interbase Public
 
6
 * License Version 1.0 (the "License"); you may not use this file
 
7
 * except in compliance with the License. You may obtain a copy
 
8
 * of the License at http://www.Inprise.com/IPL.html
 
9
 *
 
10
 * Software distributed under the License is distributed on an
 
11
 * "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
 
12
 * or implied. See the License for the specific language governing
 
13
 * rights and limitations under the License.
 
14
 *
 
15
 * The Original Code was created by Inprise Corporation
 
16
 * and its predecessors. Portions created by Inprise Corporation are
 
17
 * Copyright (C) Inprise Corporation.
 
18
 *
 
19
 * All Rights Reserved.
 
20
 * Contributor(s): ______________________________________.
 
21
 */
 
22
 
 
23
#ifndef JRD_VIO_DEBUG_H
 
24
#define JRD_VIO_DEBUG_H
 
25
 
 
26
const int DEBUG_WRITES                  = 1;
 
27
const int DEBUG_WRITES_INFO             = 2;
 
28
const int DEBUG_READS                   = 3;
 
29
const int DEBUG_READS_INFO              = 4;
 
30
const int DEBUG_TRACE                   = 5;
 
31
const int DEBUG_TRACE_INFO              = 6;
 
32
const int DEBUG_TRACE_ALL               = 7;
 
33
const int DEBUG_TRACE_ALL_INFO  = 8;
 
34
 
 
35
static int debug_flag;
 
36
 
 
37
#endif /* JRD_VIO_DEBUG_H */
 
38