183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
total_mallocs,
total_frees,
current_malloc_packets,
(unsigned long)current_bytes_malloced,
maximum_malloc_packets,
(unsigned long)maximum_bytes_malloced);
if (flags == 0) {
fprintf((FILE *)clientData, buf);
} else {
/* Assume objPtr to append to */
Tcl_AppendToObj((Tcl_Obj *) clientData, buf, -1);
}
return 1;
}
|
|
|
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
total_mallocs,
total_frees,
current_malloc_packets,
(unsigned long)current_bytes_malloced,
maximum_malloc_packets,
(unsigned long)maximum_bytes_malloced);
if (flags == 0) {
fprintf((FILE *)clientData, "%s", buf);
} else {
/* Assume objPtr to append to */
Tcl_AppendToObj((Tcl_Obj *) clientData, buf, -1);
}
return 1;
}
|