Changeset 48 for trunk/hal/x86_64/hal_context.c
- Timestamp:
- Jun 26, 2017, 12:08:02 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/x86_64/hal_context.c
r25 r48 34 34 #include <hal_context.h> 35 35 36 #include <hal_internal.h> 37 36 38 error_t hal_cpu_context_create( struct thread_s * thread ) 37 39 { 38 return 0; 40 x86_panic((char *)__func__); 41 return 0; 39 42 } 40 43 … … 42 45 thread_t * src ) 43 46 { 44 return 0; 47 x86_panic((char *)__func__); 48 return 0; 45 49 } 46 50 47 51 void hal_cpu_context_destroy( thread_t * thread ) 48 52 { 49 50 53 x86_panic((char *)__func__); 51 54 } 52 55 53 56 error_t hal_fpu_context_create( thread_t * thread ) 54 57 { 55 return 0; 58 x86_panic((char *)__func__); 59 return 0; 56 60 } 57 61 … … 59 63 thread_t * src ) 60 64 { 61 return 0; 65 x86_panic((char *)__func__); 66 return 0; 62 67 } 63 68 64 69 void hal_fpu_context_destroy( thread_t * thread ) 65 70 { 66 71 x86_panic((char *)__func__); 67 72 } 68 73 69 74 void hal_cpu_context_save( thread_t * thread ) 70 75 { 76 x86_panic((char *)__func__); 77 } 71 78 72 }73 74 79 void hal_cpu_context_restore( thread_t * thread ) 75 80 { 76 81 x86_panic((char *)__func__); 77 82 } 78 83 79 84 void hal_cpu_context_load( thread_t * thread ) 80 85 { 81 86 x86_panic((char *)__func__); 82 87 } 83 88 84 89 void hal_fpu_context_save( thread_t * thread ) 85 90 { 86 91 x86_panic((char *)__func__); 87 92 } 88 93 89 94 void hal_fpu_context_restore( thread_t * thread ) 90 95 { 91 96 x86_panic((char *)__func__); 92 97 } 93 98 … … 95 100 xptr_t src ) 96 101 { 97 102 x86_panic((char *)__func__); 98 103 } 99 104
Note: See TracChangeset
for help on using the changeset viewer.