aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llstatenums.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llcommon/llstatenums.h')
-rw-r--r--linden/indra/llcommon/llstatenums.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/linden/indra/llcommon/llstatenums.h b/linden/indra/llcommon/llstatenums.h
new file mode 100644
index 0000000..6860ca0
--- /dev/null
+++ b/linden/indra/llcommon/llstatenums.h
@@ -0,0 +1,59 @@
1/**
2 * @file llstatenums.h
3 *
4 * Copyright (c) 2001-2007, Linden Research, Inc.
5 *
6 * The source code in this file ("Source Code") is provided by Linden Lab
7 * to you under the terms of the GNU General Public License, version 2.0
8 * ("GPL"), unless you have obtained a separate licensing agreement
9 * ("Other License"), formally executed by you and Linden Lab. Terms of
10 * the GPL can be found in doc/GPL-license.txt in this distribution, or
11 * online at http://secondlife.com/developers/opensource/gplv2
12 *
13 * There are special exceptions to the terms and conditions of the GPL as
14 * it is applied to this Source Code. View the full text of the exception
15 * in the file doc/FLOSS-exception.txt in this software distribution, or
16 * online at http://secondlife.com/developers/opensource/flossexception
17 *
18 * By copying, modifying or distributing this software, you acknowledge
19 * that you have read and understood your obligations described above,
20 * and agree to abide by those obligations.
21 *
22 * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
23 * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
24 * COMPLETENESS OR PERFORMANCE.
25 */
26
27#ifndef LL_LLSTATENUMS_H
28#define LL_LLSTATENUMS_H
29
30enum
31{
32 LL_SIM_STAT_TIME_DILATION,
33 LL_SIM_STAT_FPS,
34 LL_SIM_STAT_PHYSFPS,
35 LL_SIM_STAT_AGENTUPS,
36 LL_SIM_STAT_FRAMEMS,
37 LL_SIM_STAT_NETMS,
38 LL_SIM_STAT_SIMOTHERMS,
39 LL_SIM_STAT_SIMPHYSICSMS,
40 LL_SIM_STAT_AGENTMS,
41 LL_SIM_STAT_IMAGESMS,
42 LL_SIM_STAT_SCRIPTMS,
43 LL_SIM_STAT_NUMTASKS,
44 LL_SIM_STAT_NUMTASKSACTIVE,
45 LL_SIM_STAT_NUMAGENTMAIN,
46 LL_SIM_STAT_NUMAGENTCHILD,
47 LL_SIM_STAT_NUMSCRIPTSACTIVE,
48 LL_SIM_STAT_LSLIPS,
49 LL_SIM_STAT_INPPS,
50 LL_SIM_STAT_OUTPPS,
51 LL_SIM_STAT_PENDING_DOWNLOADS,
52 LL_SIM_STAT_PENDING_UPLOADS,
53 LL_SIM_STAT_VIRTUAL_SIZE_KB,
54 LL_SIM_STAT_RESIDENT_SIZE_KB,
55 LL_SIM_STAT_PENDING_LOCAL_UPLOADS,
56 LL_SIM_STAT_TOTAL_UNACKED_BYTES
57};
58
59#endif