Changeset f76fed4 in mainline for generic/include/proc/thread.h
- Timestamp:
- 2006-03-03T00:20:31Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 09c18f7
- Parents:
- ddcf365
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/proc/thread.h
rddcf365 rf76fed4 40 40 #include <config.h> 41 41 #include <adt/list.h> 42 #include <mm/slab.h> 42 43 43 44 #define THREAD_STACK_SIZE STACK_SIZE … … 83 84 volatile int timeout_pending; /**< Flag signalling sleep timeout in progress. */ 84 85 85 fpu_context_t saved_fpu_context;86 fpu_context_t *saved_fpu_context; 86 87 int fpu_context_exists; 87 88 … … 136 137 extern void thread_destroy(thread_t *t); 137 138 139 140 /* Fpu context slab cache */ 141 extern slab_cache_t *fpu_context_slab; 142 138 143 #endif
Note:
See TracChangeset
for help on using the changeset viewer.