Remove checkpoint tracing.

This feature is not necessary anymore since we have tools like valgrind today
that can catch stack overflow errors before they make a backtrace in gdb
impossible.
This commit is contained in:
Guus Sliepen 2009-09-25 00:33:04 +02:00
parent 5dde6461a3
commit a227843b73
31 changed files with 1 additions and 471 deletions

View file

@ -36,8 +36,6 @@ bool send_meta(connection_t *c, const char *buffer, int length) {
int outlen;
int result;
cp();
if(!c) {
logger(LOG_ERR, _("send_meta() called with NULL pointer!"));
abort();
@ -121,8 +119,6 @@ void broadcast_meta(connection_t *from, const char *buffer, int length) {
avl_node_t *node;
connection_t *c;
cp();
for(node = connection_tree->head; node; node = node->next) {
c = node->data;
@ -137,8 +133,6 @@ bool receive_meta(connection_t *c) {
bool decrypted = false;
char inbuf[MAXBUFSIZE];
cp();
/* Strategy:
- Read as much as possible from the TCP socket in one go.
- Decrypt it.