comparison packages/kernel/current/include/intr.hxx @ 130:eb9fd8c04db3 ecos-sw-2000-10-23

Merge from eCos master repository on 2000-10-23-17:01:37-BST
author jlarmour
date Mon, 23 Oct 2000 17:10:57 +0000
parents 0c2b7be0d798
children 4c750ce71ae3
comparison
equal deleted inserted replaced
129:605a0fc6f385 130:eb9fd8c04db3
161 static volatile cyg_ucount32 dsr_table_tail; 161 static volatile cyg_ucount32 dsr_table_tail;
162 162
163 #endif 163 #endif
164 #ifdef CYGIMP_KERNEL_INTERRUPTS_DSRS_LIST 164 #ifdef CYGIMP_KERNEL_INTERRUPTS_DSRS_LIST
165 165
166 cyg_ucount32 dsr_count; // Number of DSR posts made 166 volatile cyg_ucount32 dsr_count; // Number of DSR posts made
167 167
168 volatile Cyg_Interrupt *next_dsr; // next DSR in list 168 Cyg_Interrupt* volatile next_dsr; // next DSR in list
169 169
170 static volatile Cyg_Interrupt *dsr_list; // static list of pending DSRs 170 static Cyg_Interrupt* volatile dsr_list; // static list of pending DSRs
171 171
172 #endif 172 #endif
173 173
174 #ifdef CYGIMP_KERNEL_INTERRUPTS_CHAIN 174 #ifdef CYGIMP_KERNEL_INTERRUPTS_CHAIN
175 175