Changes in kernel/generic/src/proc/the.c [d4d36f9:63e27ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/the.c
rd4d36f9 r63e27ef 43 43 44 44 #include <arch.h> 45 #include < debug.h>45 #include <assert.h> 46 46 47 47 /** Initialize THE structure … … 60 60 the->as = NULL; 61 61 the->magic = MAGIC; 62 #ifdef RCU_PREEMPT_A 62 #ifdef RCU_PREEMPT_A 63 63 the->rcu_nesting = 0; 64 64 #endif … … 75 75 NO_TRACE void the_copy(the_t *src, the_t *dst) 76 76 { 77 ASSERT(src->magic == MAGIC);77 assert(src->magic == MAGIC); 78 78 *dst = *src; 79 79 }
Note:
See TracChangeset
for help on using the changeset viewer.