From: chas w. <ch...@us...> - 2008-01-01 00:14:56
|
Update of /cvsroot/linux-atm/linux-atm/src/switch/debug In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv24942/src/switch/debug Modified Files: Makefile.am debug.c Added Files: .cvsignore Log Message: merge 2.5.0 branch into the head Index: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/switch/debug/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 9 Oct 2001 22:33:08 -0000 1.2 --- Makefile.am 1 Jan 2008 00:14:52 -0000 1.3 *************** *** 1,5 **** noinst_PROGRAMS = sw_debug ! INCLUDES = -I$(top_builddir)/src/qgen sw_debug_SOURCES = debug.c --- 1,5 ---- noinst_PROGRAMS = sw_debug ! INCLUDES = -I$(srcdir)/../../qgen sw_debug_SOURCES = debug.c Index: debug.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/switch/debug/debug.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** debug.c 9 Oct 2001 22:33:08 -0000 1.2 --- debug.c 1 Jan 2008 00:14:52 -0000 1.3 *************** *** 44,49 **** void fab_init(CALL *call) { ! PRV(call) = alloc_t(FAB); ! PRV(call)->next = calls; calls = call; } --- 44,52 ---- void fab_init(CALL *call) { ! FAB *fab; ! ! fab = alloc_t(FAB); ! call->fab = fab; ! fab->next = calls; calls = call; } *************** *** 60,64 **** *walk = PRV(call)->next; free(PRV(call)); ! PRV(call) = NULL; } --- 63,67 ---- *walk = PRV(call)->next; free(PRV(call)); ! call->fab = NULL; } |