diff options
author | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2005-08-17 05:01:37 +0000 |
---|---|---|
committer | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2005-08-17 05:01:37 +0000 |
commit | 088bfb456af4ad2d1d0962f41e91d029bdec993e (patch) | |
tree | 18694e5f4ab42581ab3074647c4a9ba8cb1e095f /coregrind/m_scheduler | |
parent | cd3fb668b77c1c750f4176e07f85eaed568999e2 (diff) |
Partial implementation of mallinfo(). It still puts zero in all
the fields, but all the plumbing is now there so that m_mallocfree.c
can fill them in.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4441 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'coregrind/m_scheduler')
-rw-r--r-- | coregrind/m_scheduler/scheduler.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/coregrind/m_scheduler/scheduler.c b/coregrind/m_scheduler/scheduler.c index 4b050362..a941685f 100644 --- a/coregrind/m_scheduler/scheduler.c +++ b/coregrind/m_scheduler/scheduler.c @@ -1027,6 +1027,7 @@ void do_client_request ( ThreadId tid ) info->tl___builtin_vec_delete = VG_(tdict).tool___builtin_vec_delete; info->arena_payload_szB = VG_(arena_payload_szB); + info->mallinfo = VG_(mallinfo); info->clo_trace_malloc = VG_(clo_trace_malloc); SET_CLREQ_RETVAL( tid, 0 ); /* return value is meaningless */ |