Ignore:
Timestamp:
Aug 29, 2017, 12:03:37 PM (7 years ago)
Author:
alain
Message:

This version executed successfully the user "init" process on a mono-processor TSAR architecture.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/kern/dqdt.c

    r374 r406  
    6060        for ( i = 0 ; i < 4 ; i++ )
    6161        {
    62             if ( local_node.children[i] != XPTR_NULL ) dqdt_global_print( local_node.children[i] );
     62            if ( local_node.children[i] != XPTR_NULL )
     63                dqdt_global_print( local_node.children[i] );
    6364        }
    6465    }
     
    7071                    uint32_t y_width )
    7172{
    72     if( (x_size > 32) || (y_size > 32) )
    73     {
    74         panic("illegal mesh size for DQDT support");
    75     }
     73    assert( ((x_size <= 32) && (y_size <= 32)) , __FUNCTION__ , "illegal mesh size\n");
    7674
    7775        dqdt_node_t * node;
Note: See TracChangeset for help on using the changeset viewer.