Changeset 58775d30 in mainline for kernel/generic/include/cpu.h
- Timestamp:
- 2015-03-16T16:07:21Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2003739
- Parents:
- 6069061 (diff), 795e2bf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/cpu.h
r6069061 r58775d30 38 38 #include <mm/tlb.h> 39 39 #include <synch/spinlock.h> 40 #include <synch/rcu_types.h> 40 41 #include <proc/scheduler.h> 41 42 #include <arch/cpu.h> 42 43 #include <arch/context.h> 44 #include <adt/list.h> 45 #include <arch.h> 46 47 #define CPU THE->cpu 48 43 49 44 50 /** CPU structure. … … 94 100 95 101 /** 102 * SMP calls to invoke on this CPU. 103 */ 104 SPINLOCK_DECLARE(smp_calls_lock); 105 list_t smp_pending_calls; 106 107 /** RCU per-cpu data. Uses own locking. */ 108 rcu_cpu_data_t rcu; 109 110 /** 96 111 * Stack used by scheduler when there is no running thread. 97 112 */
Note:
See TracChangeset
for help on using the changeset viewer.