blob: d20ac8704713985e8cad1f99ddb8ba410ca88b78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
* @file lscript_heapruntime.h
* @brief classes to manage script heap at runtime
*
* Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#if 0
#ifndef LL_LSCRIPT_HEAPRUNTIME_H
#define LL_LSCRIPT_HEAPRUNTIME_H
#include "lscript_byteconvert.h"
const S32 HEAP_BLOCK_HEADER_SIZE = 9;
const S32 HEAP_BLOCK_SPLIT_THRESHOLD = 16;
#endif
#endif
|