repo.or.cz
/
charm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Link conv-cpm as C++
[charm.git]
/
src
/
ck-perf
/
tracec.h
blob
6482ade0e804141f02af8c532095eeec5461aa01
1
#ifndef __TRACEC_H__
2
#define __TRACEC_H__
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
extern
void
traceMalloc_c
(
void
*
where
,
int
size
,
void
**
stack
,
int
stackSize
);
9
extern
void
traceFree_c
(
void
*
where
,
int
size
);
10
11
#ifdef __cplusplus
12
}
13
#endif
14
15
#endif