Subversion Repositories freemyipod

Rev

Rev 31 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31 Rev 34
Line 104... Line 104...
104
};
104
};
105
 
105
 
106
 
106
 
107
void scheduler_init() INITCODE_ATTR;
107
void scheduler_init() INITCODE_ATTR;
108
void scheduler_switch(int thread) ICODE_ATTR;
108
void scheduler_switch(int thread) ICODE_ATTR;
-
 
109
void scheduler_freeze(bool value);
109
int thread_create(const char* name, const void* code, void* stack,
110
int thread_create(const char* name, const void* code, void* stack,
110
                  int stacksize, enum thread_type type, int priority, bool run);
111
                  int stacksize, enum thread_type type, int priority, bool run);
111
int thread_suspend(int thread);
112
int thread_suspend(int thread);
112
int thread_resume(int thread);
113
int thread_resume(int thread);
113
int thread_terminate(int thread);
114
int thread_terminate(int thread);