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

« back to all changes in this revision

Viewing changes to src/jrd/svc_undoc.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
/*
 
2
 *      PROGRAM:        JRD Access Method
 
3
 *      MODULE:         svc_undoc.h
 
4
 *      DESCRIPTION:    Undocumented service items
 
5
 *
 
6
 * The contents of this file are subject to the Interbase Public
 
7
 * License Version 1.0 (the "License"); you may not use this file
 
8
 * except in compliance with the License. You may obtain a copy
 
9
 * of the License at http://www.Inprise.com/IPL.html
 
10
 *
 
11
 * Software distributed under the License is distributed on an
 
12
 * "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
 
13
 * or implied. See the License for the specific language governing
 
14
 * rights and limitations under the License.
 
15
 *
 
16
 * The Original Code was created by Inprise Corporation
 
17
 * and its predecessors. Portions created by Inprise Corporation are
 
18
 * Copyright (C) Inprise Corporation.
 
19
 *
 
20
 * All Rights Reserved.
 
21
 * Contributor(s): ______________________________________.
 
22
 */
 
23
 
 
24
#ifndef SVC_UNDOC_H
 
25
#define SVC_UNDOC_H
 
26
 
 
27
/* Service Action Flags */
 
28
const int isc_action_svc_lock_stats             = 13;   /* Retrieves lock manager statistics */
 
29
const int isc_action_svc_set_config             = 14;   /* Sets configuration file values */
 
30
const int isc_action_svc_default_config = 15;   /* Sets the configuration options to their default values */
 
31
const int isc_action_svc_set_env                = 16;   /* Sets the value for $FIREBIRD */
 
32
const int isc_action_svc_set_env_lock   = 17;   /* Sets the value for $FIREBIRD_LOCK */
 
33
const int isc_action_svc_set_env_msg    = 18;   /* Sets the value for $FIREBIRD_MSG */
 
34
 
 
35
 
 
36
/* Service Info Flags */
 
37
const int isc_info_svc_total_length             = 69;
 
38
const int isc_info_svc_response                 = 70;
 
39
const int isc_info_svc_response_more    = 71;
 
40
const int isc_info_svc_message                  = 72;
 
41
const int isc_info_svc_svr_online               = 73;
 
42
const int isc_info_svc_svr_offline              = 74;
 
43
const int isc_info_svc_set_config               = 75;
 
44
const int isc_info_svc_default_config   = 76;
 
45
const int isc_info_svc_dump_pool_info   = 77;
 
46
 
 
47
// BRS: Is not strange the following parameters are undocumented
 
48
// it are also unused in the code
 
49
/********************************************
 
50
 * Parameters for isc_action_svc_set_config *
 
51
 * isc_info_svc_get_config                  *
 
52
 *                                          *
 
53
 *             UNDOCUMENTED                 *
 
54
 ********************************************/
 
55
//#define isc_spb_ibc_lock_mem_size     5
 
56
//#define isc_spb_ibc_lock_sem_count    6
 
57
//#define isc_spb_ibc_lock_signal       7
 
58
//#define isc_spb_ibc_event_mem_size    8
 
59
//#define isc_spb_ibc_db_cache_pages    9
 
60
//#define isc_spb_ibc_priority_class    10
 
61
//#define isc_spb_ibc_svr_map_size      11
 
62
//#define isc_spb_ibc_svr_min_work_set  12
 
63
//#define isc_spb_ibc_svr_max_work_set  13
 
64
//#define isc_spb_ibc_lock_grant_order  14
 
65
//#define isc_spb_ibc_lockhash          15
 
66
//#define isc_spb_ibc_deadlock          16
 
67
//#define isc_spb_ibc_lockspin          17
 
68
//#define isc_spb_ibc_conn_timeout      18
 
69
//#define isc_spb_ibc_dummy_intrvl      19
 
70
//#define isc_spb_ibc_trace_pools       20
 
71
//#define isc_spb_ibc_temp_dir_name     21
 
72
//#define isc_spb_ibc_temp_dir_size     22
 
73
 
 
74
/*******************************************
 
75
 * Parameters for isc_action_svc_set_env,  *
 
76
 * isc_action_svc_set_env_lock,            *
 
77
 * isc_action_svc_set_env_msg              *
 
78
 *                                         *
 
79
 *             UNDOCUMENTED                *
 
80
 *******************************************/
 
81
 
 
82
//#define isc_spb_env_path              5
 
83
 
 
84
/*********************************************
 
85
 * Parameters for isc_action_svc_lock_stats  *
 
86
 *********************************************/
 
87
 
 
88
//#define isc_spb_lck_sample            5
 
89
//#define isc_spb_lck_secs              6
 
90
//#define isc_spb_lck_contents          0x01
 
91
//#define isc_spb_lck_summary           0x02
 
92
//#define isc_spb_lck_wait              0x04
 
93
//#define isc_spb_lck_stats             0x08
 
94
 
 
95
#endif  /* SVC_UNDOC_H */
 
96