Changeset 1032 for trunk/lib/trace.c


Ignore:
Timestamp:
10/02/06 13:15:35 (7 years ago)
Author:
perry
Message:

Ripout the old rtclient: code. The only implementation of a server was
within WAND which has been decomissioned and replaced with the newer rt:
protocol.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/trace.c

    r1026 r1032  
    8484 
    8585#include "libtrace.h" 
    86 #include "fifo.h" 
    8786#include "libtrace_int.h" 
    8887#include "parse_cmd.h" 
     
    353352         
    354353 
    355         libtrace->fifo = create_tracefifo(1048576); 
    356         if (!libtrace->fifo) { 
    357                 trace_set_err(libtrace,ENOMEM,"Could not allocate memory for fifo"); 
    358                 free(scan); 
    359                 return libtrace; 
    360         } 
    361         assert(libtrace->fifo); 
    362354        free(scan); 
    363355        libtrace->err.err_num=TRACE_ERR_NOERROR; 
     
    592584        if (libtrace->uridata) 
    593585                free(libtrace->uridata); 
    594         if (libtrace->fifo) 
    595                 destroy_tracefifo(libtrace->fifo); 
    596586        free(libtrace); 
    597587} 
Note: See TracChangeset for help on using the changeset viewer.