/indra/llcommon/llstatenums.h

https://bitbucket.org/lindenlab/viewer-beta/ · C Header · 68 lines · 41 code · 3 blank · 24 comment · 0 complexity · ccaa96683cd1c48dc7e297db2e9a054c MD5 · raw file

  1. /**
  2. * @file llstatenums.h
  3. *
  4. * $LicenseInfo:firstyear=2001&license=viewerlgpl$
  5. * Second Life Viewer Source Code
  6. * Copyright (C) 2010, Linden Research, Inc.
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation;
  11. * version 2.1 of the License only.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with this library; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. *
  22. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  23. * $/LicenseInfo$
  24. */
  25. #ifndef LL_LLSTATENUMS_H
  26. #define LL_LLSTATENUMS_H
  27. enum
  28. {
  29. LL_SIM_STAT_TIME_DILATION, // 0
  30. LL_SIM_STAT_FPS,
  31. LL_SIM_STAT_PHYSFPS,
  32. LL_SIM_STAT_AGENTUPS,
  33. LL_SIM_STAT_FRAMEMS,
  34. LL_SIM_STAT_NETMS, // 5
  35. LL_SIM_STAT_SIMOTHERMS,
  36. LL_SIM_STAT_SIMPHYSICSMS,
  37. LL_SIM_STAT_AGENTMS,
  38. LL_SIM_STAT_IMAGESMS,
  39. LL_SIM_STAT_SCRIPTMS, // 10
  40. LL_SIM_STAT_NUMTASKS,
  41. LL_SIM_STAT_NUMTASKSACTIVE,
  42. LL_SIM_STAT_NUMAGENTMAIN,
  43. LL_SIM_STAT_NUMAGENTCHILD,
  44. LL_SIM_STAT_NUMSCRIPTSACTIVE, // 15
  45. LL_SIM_STAT_LSLIPS,
  46. LL_SIM_STAT_INPPS,
  47. LL_SIM_STAT_OUTPPS,
  48. LL_SIM_STAT_PENDING_DOWNLOADS,
  49. LL_SIM_STAT_PENDING_UPLOADS, // 20
  50. LL_SIM_STAT_VIRTUAL_SIZE_KB,
  51. LL_SIM_STAT_RESIDENT_SIZE_KB,
  52. LL_SIM_STAT_PENDING_LOCAL_UPLOADS,
  53. LL_SIM_STAT_TOTAL_UNACKED_BYTES,
  54. LL_SIM_STAT_PHYSICS_PINNED_TASKS, // 25
  55. LL_SIM_STAT_PHYSICS_LOD_TASKS,
  56. LL_SIM_STAT_SIMPHYSICSSTEPMS,
  57. LL_SIM_STAT_SIMPHYSICSSHAPEMS,
  58. LL_SIM_STAT_SIMPHYSICSOTHERMS,
  59. LL_SIM_STAT_SIMPHYSICSMEMORY, // 30
  60. LL_SIM_STAT_SCRIPT_EPS,
  61. LL_SIM_STAT_SIMSPARETIME,
  62. LL_SIM_STAT_SIMSLEEPTIME,
  63. LL_SIM_STAT_IOPUMPTIME,
  64. };
  65. #endif