summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emualloc.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-06-25 05:11:42 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-06-25 05:11:42 +0000
commit29b6b0de4167319a4f64ee95ecc5f18ba3fdf923 (patch)
treea408b4561c3d622c98e267e9a8a269390e0210ba /src/emu/emualloc.h
parent1c9abccb20fc25c928990ef050bce82efac99cc8 (diff)
C++-ified the debugger views. Not quite architecturally where I would
like them, but it's a start. Split implementation of individual view types out to separate files. Updated all callers. Also: * fixed okim6295 memory view * changed emualloc to free resource pools from earliest to latest so that early objects can safely clean up stuff they allocated
Diffstat (limited to 'src/emu/emualloc.h')
-rw-r--r--src/emu/emualloc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/emualloc.h b/src/emu/emualloc.h
index 48b6e136c7d..074e0c445b6 100644
--- a/src/emu/emualloc.h
+++ b/src/emu/emualloc.h
@@ -165,6 +165,7 @@ private:
osd_lock * m_listlock;
resource_pool_item * m_hash[k_hash_prime];
resource_pool_item * m_ordered_head;
+ resource_pool_item * m_ordered_tail;
};