Changeset a6e55886 in mainline for kernel/generic/include
- Timestamp:
- 2018-11-01T14:30:03Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d1da1ff2
- Parents:
- bab75df6
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-11-01 14:30:03)
- git-committer:
- GitHub <noreply@…> (2018-11-01 14:30:03)
- Location:
- kernel/generic/include
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/arch.h
rbab75df6 ra6e55886 40 40 41 41 /* 42 * THE is not an abbreviation, but the English definite article written in 43 * capital letters. It means the current pointer to something, e.g. thread, 44 * processor or address space. Kind reader of this comment shall appreciate 45 * the wit of constructs like THE->thread and similar. 42 * The current_t structure holds pointers to various parts of the current 43 * execution state, like running task, thread, address space, etc. 46 44 */ 47 #define THE ((the_t * )(get_stack_base()))45 #define CURRENT ((current_t * )(get_stack_base())) 48 46 49 47 #define MAGIC UINT32_C(0xfacefeed) … … 53 51 #define DEFAULT_CONTAINER 0 54 52 #define CONTAINER \ 55 (( THE->task) ? (THE->task->container) : (DEFAULT_CONTAINER))53 ((CURRENT->task) ? (CURRENT->task->container) : (DEFAULT_CONTAINER)) 56 54 57 55 /* Fwd decl. to avoid include hell. */ … … 76 74 struct as *as; /**< Current address space. */ 77 75 uint32_t magic; /**< Magic value */ 78 } the_t;76 } current_t; 79 77 80 78 typedef struct { … … 96 94 #define ARCH_OP(op) ARCH_STRUCT_OP(arch_ops, op) 97 95 98 extern void the_initialize(the_t *);99 extern void the_copy(the_t *, the_t *);96 extern void current_initialize(current_t *); 97 extern void current_copy(current_t *, current_t *); 100 98 101 99 extern void calibrate_delay_loop(void); -
kernel/generic/include/cpu.h
rbab75df6 ra6e55886 45 45 #include <arch.h> 46 46 47 #define CPU THE->cpu47 #define CPU CURRENT->cpu 48 48 49 49 /** CPU structure. -
kernel/generic/include/mm/as.h
rbab75df6 ra6e55886 50 50 #include <lib/refcount.h> 51 51 52 #define AS THE->as52 #define AS CURRENT->as 53 53 54 54 /** -
kernel/generic/include/preemption.h
rbab75df6 ra6e55886 41 41 42 42 #define PREEMPTION_INC (1 << 0) 43 #define PREEMPTION_DISABLED (PREEMPTION_INC <= THE->preemption)43 #define PREEMPTION_DISABLED (PREEMPTION_INC <= CURRENT->preemption) 44 44 #define PREEMPTION_ENABLED (!PREEMPTION_DISABLED) 45 45 … … 47 47 #define preemption_disable() \ 48 48 do { \ 49 THE->preemption += PREEMPTION_INC; \49 CURRENT->preemption += PREEMPTION_INC; \ 50 50 compiler_barrier(); \ 51 51 } while (0) … … 56 56 assert(PREEMPTION_DISABLED); \ 57 57 compiler_barrier(); \ 58 THE->preemption -= PREEMPTION_INC; \58 CURRENT->preemption -= PREEMPTION_INC; \ 59 59 } while (0) 60 60 -
kernel/generic/include/proc/task.h
rbab75df6 ra6e55886 63 63 #include <cap/cap.h> 64 64 65 #define TASK THE->task65 #define TASK CURRENT->task 66 66 67 67 struct thread; -
kernel/generic/include/proc/thread.h
rbab75df6 ra6e55886 52 52 #include <arch.h> 53 53 54 #define THREAD THE->thread54 #define THREAD CURRENT->thread 55 55 56 56 #define THREAD_NAME_BUFLEN 20 -
kernel/generic/include/synch/rcu.h
rbab75df6 ra6e55886 132 132 static inline void rcu_read_lock(void) 133 133 { 134 THE->rcu_nesting += RCU_CNT_INC;134 CURRENT->rcu_nesting += RCU_CNT_INC; 135 135 compiler_barrier(); 136 136 } … … 140 140 { 141 141 compiler_barrier(); 142 THE->rcu_nesting -= RCU_CNT_INC;143 144 if (RCU_WAS_PREEMPTED == THE->rcu_nesting) {142 CURRENT->rcu_nesting -= RCU_CNT_INC; 143 144 if (RCU_WAS_PREEMPTED == CURRENT->rcu_nesting) { 145 145 _rcu_preempted_unlock(); 146 146 } -
kernel/generic/include/time/timeout.h
rbab75df6 ra6e55886 45 45 IRQ_SPINLOCK_DECLARE(lock); 46 46 47 /** Link to the list of active timeouts on THE->cpu */47 /** Link to the list of active timeouts on CURRENT->cpu */ 48 48 link_t link; 49 49 /** Timeout will be activated in this amount of clock() ticks. */
Note:
See TracChangeset
for help on using the changeset viewer.