fbs/fontandbitmapserver/sfbs/patchableconstants.cpp
changeset 36 01a6848ebfd7
parent 0 5d03bc08d59c
child 116 171fae344dd4
equal deleted inserted replaced
0:5d03bc08d59c 36:01a6848ebfd7
    30 This constant determines the maximum size of the shared heap in the font and bitmap server.
    30 This constant determines the maximum size of the shared heap in the font and bitmap server.
    31 Up to the value of the constant, the size of the virtual address range reserved for this heap
    31 Up to the value of the constant, the size of the virtual address range reserved for this heap
    32 equals the amount of physical RAM memory. As available hardware RAM sizes increase in the future,
    32 equals the amount of physical RAM memory. As available hardware RAM sizes increase in the future,
    33 it may become impossible to reserve a virtual address range that big, hence the need for an upper limit.
    33 it may become impossible to reserve a virtual address range that big, hence the need for an upper limit.
    34 @note	Default value: 64MB (0x04000000)
    34 @note	Default value: 64MB (0x04000000)
       
    35 @note   Emulator value 2MB (0x0200000)
    35 */
    36 */
       
    37 #ifdef __WINS__
       
    38 EXPORT_C extern const TInt KFbServSharedHeapMaxSize = 0x00200000;
       
    39 #else
    36 EXPORT_C extern const TInt KFbServSharedHeapMaxSize = 0x04000000;
    40 EXPORT_C extern const TInt KFbServSharedHeapMaxSize = 0x04000000;
       
    41 #endif
    37 
    42 
    38 /**
    43 /**
    39 @SYMPatchable
    44 @SYMPatchable
    40 @internalTechnology
    45 @internalTechnology
    41 
    46