projects
/
IRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9cb94a3
)
debugging
author
bdemsky
<bdemsky>
Thu, 1 Mar 2007 09:53:44 +0000
(09:53 +0000)
committer
bdemsky
<bdemsky>
Thu, 1 Mar 2007 09:53:44 +0000
(09:53 +0000)
Robust/src/Runtime/Queue.c
patch
|
blob
|
history
Robust/src/Runtime/runtime.c
patch
|
blob
|
history
diff --git
a/Robust/src/Runtime/Queue.c
b/Robust/src/Runtime/Queue.c
index 51c9a1dac3fcf148452f2eb989ef3021ae6f7ecd..a29e96b083116d37f9de2149b66a01f4f009b56d 100644
(file)
--- a/
Robust/src/Runtime/Queue.c
+++ b/
Robust/src/Runtime/Queue.c
@@
-1,5
+1,8
@@
#include "mem.h"
#include "Queue.h"
+#ifdef DMALLOC
+#include "dmalloc.h"
+#endif
struct Queue * createQueue() {
return RUNMALLOC(sizeof(struct Queue));
diff --git
a/Robust/src/Runtime/runtime.c
b/Robust/src/Runtime/runtime.c
index 3f717db1aadcfad9dbddfea165ed5de45dffcd9f..bba7225a9485c9b4076413e86c74cbb9d81f0536 100644
(file)
--- a/
Robust/src/Runtime/runtime.c
+++ b/
Robust/src/Runtime/runtime.c
@@
-24,7
+24,9
@@
int failurecount;
float instfailurechance=0;
int numfailures;
int instaccum=0;
-
+#ifdef DMALLOC
+#include "dmalloc.h"
+#endif
#ifdef TASK