Changeset f76fed4 in mainline for generic/include
- Timestamp:
- 2006-03-03T00:20:31Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 09c18f78
- Parents:
- ddcf365
- Location:
- generic/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/fpu_context.h
rddcf365 rf76fed4 34 34 #include <typedefs.h> 35 35 36 #if defined(CONFIG_FPU_LAZY) && !defined(ARCH_HAS_FPU) 37 # error "CONFIG_FPU_LAZY defined, but no ARCH_HAS_FPU" 38 #endif 39 36 40 extern void fpu_context_save(fpu_context_t *); 37 41 extern void fpu_context_restore(fpu_context_t *); 38 extern void fpu_init( fpu_context_t *);42 extern void fpu_init(void); 39 43 extern void fpu_enable(void); 40 44 extern void fpu_disable(void); -
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.