Ignore:
Timestamp:
Aug 5, 2015, 6:46:14 PM (9 years ago)
Author:
guerin
Message:

remove last references to giet_shr_printf()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_libs/user_sqt_lock.c

    r581 r693  
    4040
    4141#if GIET_DEBUG_USER_LOCK
    42 giet_shr_printf("\n[DEBUG USER SQT_LOCK] P[%d,%d,%d] initialises SQT node[%d,%d,%d] : \n"
     42giet_tty_printf("\n[DEBUG USER SQT_LOCK] P[%d,%d,%d] initialises SQT node[%d,%d,%d] : \n"
    4343      " parent = %x / childO = %x / child1 = %x / child2 = %x / child3 = %x\n",
    4444      px , py , pl , x , y , level ,
     
    8585
    8686#if GIET_DEBUG_USER_LOCK
    87 giet_shr_printf("\n[DEBUG USER SQT_LOCK] P[%d,%d,%d] initialises SQT node[%d,%d,%d] : \n"
     87giet_tty_printf("\n[DEBUG USER SQT_LOCK] P[%d,%d,%d] initialises SQT node[%d,%d,%d] : \n"
    8888      " parent = %x / childO = %x / child1 = %x / child2 = %x / child3 = %x\n",
    8989      px , py , pl , x , y , level ,
     
    134134giet_proc_xyp(&px, &py, &pl);
    135135unsigned int side   = (z < 2) ? 1 : (z < 3) ? 2 : (z < 5) ? 4 : (z < 9) ? 8 : 16;
    136 giet_shr_printf("\n[DEBUG USER SQT_LOCK] sqt_nodes allocation\n"
     136giet_tty_printf("\n[DEBUG USER SQT_LOCK] sqt_nodes allocation\n"
    137137                " x_size = %d / y_size = %d / levels = %d / side = %d\n",
    138138                x_size , y_size , levels , side );
     
    162162
    163163#if GIET_DEBUG_USER_LOCK
    164 giet_shr_printf("\n[DEBUG USER SQT_LOCK] P[%d,%d,%d] allocates SQT node[%d,%d,%d]"
     164giet_tty_printf("\n[DEBUG USER SQT_LOCK] P[%d,%d,%d] allocates SQT node[%d,%d,%d]"
    165165               " : vaddr = %x\n",
    166166               px , py , pl , x , y , l , (unsigned int)lock->node[x][y][l] );
     
    183183
    184184#if GIET_DEBUG_USER_LOCK
    185 giet_shr_printf("\n[DEBUG USER SQT_LOCK] SQT nodes initialisation completed\n");
     185giet_tty_printf("\n[DEBUG USER SQT_LOCK] SQT nodes initialisation completed\n");
    186186#endif
    187187
     
    201201unsigned int    l;
    202202giet_proc_xyp(&x, &y, &l);
    203 giet_shr_printf("\n[DEBUG USER SQT_LOCK] P[%d,%d,%d] get ticket %d for SQT lock %x"
     203giet_tty_printf("\n[DEBUG USER SQT_LOCK] P[%d,%d,%d] get ticket %d for SQT lock %x"
    204204               " / level = %d / current = %d / free = %d\n",
    205205               x , y , l , ticket , (unsigned int)node ,
     
    211211
    212212#if GIET_DEBUG_USER_LOCK
    213 giet_shr_printf("\n[DEBUG SQT_LOCK] P[%d,%d,%d] get SQT lock %x"
     213giet_tty_printf("\n[DEBUG SQT_LOCK] P[%d,%d,%d] get SQT lock %x"
    214214               " / level = %d / current = %d / free = %d\n",
    215215               x , y , l , (unsigned int)node ,
     
    248248unsigned int    l;
    249249giet_proc_xyp(&x, &y, &l);
    250 giet_shr_printf("\n[DEBUG USER SQT_LOCK] P[%d,%d,%d] release SQT lock %x"
     250giet_tty_printf("\n[DEBUG USER SQT_LOCK] P[%d,%d,%d] release SQT lock %x"
    251251               " / level = %d / current = %d / free = %d\n",
    252252               x , y , l , (unsigned int)node,
Note: See TracChangeset for help on using the changeset viewer.