|
1 /* |
|
2 * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Resource file specifying compact db level |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 // INCLUDES |
|
21 #include <uikon.rh> |
|
22 |
|
23 // RESOURCE SIGNATURE |
|
24 RESOURCE RSS_SIGNATURE { } |
|
25 |
|
26 // RESOURCE DEFINITIONS |
|
27 |
|
28 // ----------------------------------------------------------------------------- |
|
29 // |
|
30 // R_POS_LM_LOCAL_COMPACT_DB_USAGE_LEVEL |
|
31 // Internal local compact database level in percent. If the database usage |
|
32 // percentage gets lower than this specifed value during a long-running |
|
33 // operation that modifies the database, compact will be performed. |
|
34 // |
|
35 // ----------------------------------------------------------------------------- |
|
36 // |
|
37 RESOURCE NUMBER_INT32 r_pos_lm_local_compact_db_usage_level |
|
38 { |
|
39 value="75"; |
|
40 } |
|
41 |
|
42 // ----------------------------------------------------------------------------- |
|
43 // |
|
44 // R_POS_LM_SERVER_COMPACT_RELATIVE_DB_USAGE_LEVEL |
|
45 // Internal server compact relative database level in percent. If the relative |
|
46 // database usage percentage gets lower than this specifed value and the |
|
47 // absolute wasted database usage is exceeded, compact will be performed after a |
|
48 // release of a write lock. |
|
49 // |
|
50 // ----------------------------------------------------------------------------- |
|
51 // |
|
52 RESOURCE NUMBER_INT32 r_pos_lm_server_compact_relative_db_usage_level |
|
53 { |
|
54 value="60"; |
|
55 } |
|
56 |
|
57 // ----------------------------------------------------------------------------- |
|
58 // |
|
59 // R_POS_LM_SERVER_COMPACT_ABSOLUTE_WASTED_DB_USAGE_LEVEL |
|
60 // Internal server compact absolute database level in kB. If the relative |
|
61 // database usage percentage is below the relative database usage level and the |
|
62 // absolute wasted database usage exceeds this specifed value, compact will be |
|
63 // performed after a release of a write lock. |
|
64 // |
|
65 // ----------------------------------------------------------------------------- |
|
66 // |
|
67 RESOURCE NUMBER_INT32 r_pos_lm_server_compact_absolute_wasted_db_usage_level |
|
68 { |
|
69 value="36"; |
|
70 } |
|
71 |
|
72 // End of File |
|
73 |
|
74 |