summaryrefslogtreecommitdiff
path: root/src/common/ers.h
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-05-17 21:47:10 -0300
committershennetsind <ind@henn.et>2013-05-17 21:47:10 -0300
commit104bb6c05dc8effef9db715f0b708d4548e10010 (patch)
treeda8cfebada8a4345cee998713679db54eafffd84 /src/common/ers.h
parent4ef9258f0f618857ed5d9e2f9e07f33dc6d13559 (diff)
downloadhercules-104bb6c05dc8effef9db715f0b708d4548e10010.tar.gz
hercules-104bb6c05dc8effef9db715f0b708d4548e10010.tar.bz2
hercules-104bb6c05dc8effef9db715f0b708d4548e10010.tar.xz
hercules-104bb6c05dc8effef9db715f0b708d4548e10010.zip
ERS Report Redesign
greatly enhances the ability to detect memory throughput More on it: http://hercules.ws/board/blog/1/entry-30-ers-report-update/ Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/common/ers.h')
-rw-r--r--src/common/ers.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/ers.h b/src/common/ers.h
index dc66af5ef..4871d8d50 100644
--- a/src/common/ers.h
+++ b/src/common/ers.h
@@ -71,8 +71,10 @@
#endif /* not ERS_ALIGN_ENTRY */
enum ERSOptions {
- ERS_OPT_NONE = 0,
- ERS_OPT_CLEAR = 1,/* silently clears any entries left in the manager upon destruction */
+ ERS_OPT_NONE = 0x0,
+ ERS_OPT_CLEAR = 0x1,/* silently clears any entries left in the manager upon destruction */
+ ERS_OPT_WAIT = 0x2,/* wait for entries to come in order to list! */
+ ERS_OPT_FREE_NAME = 0x4,/* name is dynamic memory, and should be freed */
};
/**