Changeset 396 for trunk/kernel/libk


Ignore:
Timestamp:
Aug 17, 2017, 11:24:20 AM (7 years ago)
Author:
max@…
Message:

Use panic().

Location:
trunk/kernel/libk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/libk/grdxt.c

    r124 r396  
    164164    if( (key >> (w1 + w2 + w3)) != 0 )
    165165    {
    166         printk("\n[PANIC] in %s : key value %x exceed (%d + %d + %d) bits\n",
    167                __FUNCTION__ , key , w1 , w2 , w3 );
    168         hal_core_sleep();
     166        panic("key value %x exceed (%d + %d + %d) bits", key , w1 , w2 , w3 );
    169167    }
    170168
     
    237235    if( (key >> (w1 + w2 + w3)) != 0 )
    238236    {
    239         printk("\n[PANIC] in %s : key value %x exceed (%d + %d + %d) bits\n",
    240                __FUNCTION__ , key , w1 , w2 , w3 );
    241         hal_core_sleep();
     237        panic("key value %x exceed (%d + %d + %d) bits", key , w1 , w2 , w3 );
    242238    }
    243239
     
    280276    if( (key >> (w1 + w2 + w3)) != 0 )
    281277    {
    282         printk("\n[PANIC] in %s : key value %x exceed (%d + %d + %d) bits\n",
    283                __FUNCTION__ , key , w1 , w2 , w3 );
    284         hal_core_sleep();
     278        panic("key value %x exceed (%d + %d + %d) bits", key , w1 , w2 , w3 );
    285279    }
    286280
     
    324318    if( (start_key >> (w1 + w2 + w3)) != 0 )
    325319    {
    326         printk("\n[PANIC] in %s : start_key value %x exceed (%d + %d + %d) bits\n",
    327                __FUNCTION__ , start_key , w1 , w2 , w3 );
    328         hal_core_sleep();
     320        panic("start_key value %x exceed (%d + %d + %d) bits", start_key , w1 ,
     321              w2 , w3 );
    329322    }
    330323
  • trunk/kernel/libk/htab.c

    r23 r396  
    9999    else
    100100    {
    101         printk("\n[PANIC] in %s : undefined item type\n", __FUNCTION__ );
    102         hal_core_sleep();
     101        panic("undefined item type");
    103102    }
    104103
  • trunk/kernel/libk/xhtab.c

    r204 r396  
    139139    else
    140140    {
    141         printk("\n[PANIC] in %s : illegal item type\n", __FUNCTION__ );
    142         hal_core_sleep();
     141        panic("illegal item type");
    143142    }
    144143
Note: See TracChangeset for help on using the changeset viewer.