summaryrefslogtreecommitdiff
path: root/indra/llcommon/llstatenums.h
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
committerJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
commit420b91db29485df39fd6e724e782c449158811cb (patch)
treeb471a94563af914d3ed3edd3e856d21cb1b69945 /indra/llcommon/llstatenums.h
Print done when done.
Diffstat (limited to 'indra/llcommon/llstatenums.h')
-rw-r--r--indra/llcommon/llstatenums.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/indra/llcommon/llstatenums.h b/indra/llcommon/llstatenums.h
new file mode 100644
index 0000000000..07c6e0bf52
--- /dev/null
+++ b/indra/llcommon/llstatenums.h
@@ -0,0 +1,40 @@
+/**
+ * @file llstatenums.h
+ *
+ * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LL_LLSTATENUMS_H
+#define LL_LLSTATENUMS_H
+
+enum
+{
+ LL_SIM_STAT_TIME_DILATION,
+ LL_SIM_STAT_FPS,
+ LL_SIM_STAT_PHYSFPS,
+ LL_SIM_STAT_AGENTUPS,
+ LL_SIM_STAT_FRAMEMS,
+ LL_SIM_STAT_NETMS,
+ LL_SIM_STAT_SIMOTHERMS,
+ LL_SIM_STAT_SIMPHYSICSMS,
+ LL_SIM_STAT_AGENTMS,
+ LL_SIM_STAT_IMAGESMS,
+ LL_SIM_STAT_SCRIPTMS,
+ LL_SIM_STAT_NUMTASKS,
+ LL_SIM_STAT_NUMTASKSACTIVE,
+ LL_SIM_STAT_NUMAGENTMAIN,
+ LL_SIM_STAT_NUMAGENTCHILD,
+ LL_SIM_STAT_NUMSCRIPTSACTIVE,
+ LL_SIM_STAT_LSLIPS,
+ LL_SIM_STAT_INPPS,
+ LL_SIM_STAT_OUTPPS,
+ LL_SIM_STAT_PENDING_DOWNLOADS,
+ LL_SIM_STAT_PENDING_UPLOADS,
+ LL_SIM_STAT_VIRTUAL_SIZE_KB,
+ LL_SIM_STAT_RESIDENT_SIZE_KB,
+ LL_SIM_STAT_PENDING_LOCAL_UPLOADS,
+ LL_SIM_STAT_TOTAL_UNACKED_BYTES
+};
+
+#endif