Changeset 422 for trunk/kernel/devices/dev_txt.h
- Timestamp:
- Jan 29, 2018, 5:48:47 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/devices/dev_txt.h
r407 r422 27 27 #include <kernel_config.h> 28 28 #include <hal_types.h> 29 #include <xlist.h> 30 #include <remote_spinlock.h> 29 31 30 32 /**** Forward declarations ****/ … … 47 49 * waiting strategy for the calling thread. 48 50 *****************************************************************************************/ 51 52 /****************************************************************************************** 53 * This defines the (implementation independant) extension for the generic TXT device. 54 *****************************************************************************************/ 55 56 typedef struct txt_extend_s 57 { 58 xptr_t owner_xp; /*! ext. pointer on current process owner (reference) */ 59 xlist_entry_t root; /*! root of list of processes attached to same TXT */ 60 remote_spinlock_t lock; /*! lock protecting this list */ 61 } 62 txt_extend_t; 49 63 50 64 /******************************************************************************************
Note: See TracChangeset
for help on using the changeset viewer.