Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/proc/the.c

    r63e27ef rd4d36f9  
    4343
    4444#include <arch.h>
    45 #include <assert.h>
     45#include <debug.h>
    4646
    4747/** Initialize THE structure
     
    6060        the->as = NULL;
    6161        the->magic = MAGIC;
    62 #ifdef RCU_PREEMPT_A
     62#ifdef RCU_PREEMPT_A   
    6363        the->rcu_nesting = 0;
    6464#endif
     
    7575NO_TRACE void the_copy(the_t *src, the_t *dst)
    7676{
    77         assert(src->magic == MAGIC);
     77        ASSERT(src->magic == MAGIC);
    7878        *dst = *src;
    7979}
Note: See TracChangeset for help on using the changeset viewer.