]> rtime.felk.cvut.cz Git - frescor/fna.git/commitdiff
debug flags
authorsangorrin <sangorrin@35b4ef3e-fd22-0410-ab77-dab3279adceb>
Tue, 27 Nov 2007 17:53:31 +0000 (17:53 +0000)
committersangorrin <sangorrin@35b4ef3e-fd22-0410-ab77-dab3279adceb>
Tue, 27 Nov 2007 17:53:31 +0000 (17:53 +0000)
git-svn-id: http://www.frescor.org/private/svn/frescor/fna/trunk@904 35b4ef3e-fd22-0410-ab77-dab3279adceb

src_rtep/rtep_fna_c.c

index e760fdf7b45c9eeee70d9b95d29e86320ed1df3c..9f3593cabe5674364c5c34b48620838363d22eac 100644 (file)
@@ -106,15 +106,19 @@ int rtep_fna_init(const frsh_resource_id_t resource_id)
 {
     int err = 0;
 
-    DEBUG("starting rtep\n");
+    DEBUG("calling rtep_adainit\n");
 
     // init Ada bindings
     rtep_adainit();
 
+    DEBUG("calling freelist_init\n");
+
     // initialize the freelist to handle the rtep_vres
     err = frsh_freelist_init(&rtep_vres_freelist, MAX_N_RTEP_BWRES_VRES);
     if (err != 0) return -1;
 
+    DEBUG("calling rtep_bwres_init\n");
+
     return rtep_bwres_init();
 }