Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 46 → Rev 52

/SPARTAN/trunk/include/fpu_context.h
0,0 → 1,11
 
#ifndef fpu_context_h
#define fpu_context_h
 
extern void fpu_context_save(void);
extern void fpu_context_restore(void);
extern void fpu_lazy_context_save(void);
extern void fpu_lazy_context_restore(void);
 
 
#endif /*fpu_context_h*/
/SPARTAN/trunk/include/proc/scheduler.h
60,5 → 60,6
*/
extern void before_thread_runs(void);
extern void before_thread_runs_arch(void);
 
#endif
/SPARTAN/trunk/include/context.h
30,8 → 30,12
#define __CONTEXT_H__
 
#include <typedefs.h>
#include "fpu_context.h"
 
 
extern int context_save(context_t *c);
extern void context_restore(context_t *c) __attribute__ ((noreturn));
 
 
 
#endif