Ignore:
Timestamp:
Jun 26, 2017, 12:08:02 PM (7 years ago)
Author:
max@…
Message:

Put panics everywhere

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/hal/x86_64/hal_context.c

    r25 r48  
    3434#include <hal_context.h>
    3535
     36#include <hal_internal.h>
     37
    3638error_t hal_cpu_context_create( struct thread_s * thread )
    3739{
    38     return 0;
     40        x86_panic((char *)__func__);
     41        return 0;
    3942}
    4043
     
    4245                              thread_t * src )
    4346{
    44     return 0;
     47        x86_panic((char *)__func__);
     48        return 0;
    4549}
    4650
    4751void hal_cpu_context_destroy( thread_t * thread )
    4852{
    49 
    50 
     53        x86_panic((char *)__func__);
    5154}
    5255
    5356error_t hal_fpu_context_create( thread_t * thread )
    5457{
    55     return 0;
     58        x86_panic((char *)__func__);
     59        return 0;
    5660}
    5761
     
    5963                              thread_t * src )
    6064{
    61     return 0;
     65        x86_panic((char *)__func__);
     66        return 0;
    6267}
    6368
    6469void hal_fpu_context_destroy( thread_t * thread )
    6570{
    66 
     71        x86_panic((char *)__func__);
    6772}
    6873
    6974void hal_cpu_context_save( thread_t * thread )
    7075{
     76        x86_panic((char *)__func__);
     77}
    7178
    72 }
    73  
    7479void hal_cpu_context_restore( thread_t * thread )
    7580{
    76 
     81        x86_panic((char *)__func__);
    7782}
    7883
    7984void hal_cpu_context_load( thread_t * thread )
    8085{
    81 
     86        x86_panic((char *)__func__);
    8287}
    8388
    8489void hal_fpu_context_save( thread_t * thread )
    8590{
    86 
     91        x86_panic((char *)__func__);
    8792}
    8893
    8994void hal_fpu_context_restore( thread_t * thread )
    9095{
    91 
     96        x86_panic((char *)__func__);
    9297}
    9398
     
    95100                          xptr_t src )
    96101{
    97 
     102        x86_panic((char *)__func__);
    98103}
    99104
Note: See TracChangeset for help on using the changeset viewer.