NJU-ProjectN/abstract-machine 3348db971fd860be5cb28e21c18f9d0e65d0c96a Merge pull request #8 from Jasonyanyusong/master
19 lines
256 B
C
19 lines
256 B
C
#include <am.h>
|
|
|
|
bool cte_init(Context*(*handler)(Event, Context*)) {
|
|
return false;
|
|
}
|
|
|
|
Context *kcontext(Area kstack, void (*entry)(void *), void *arg) {
|
|
return NULL;
|
|
}
|
|
|
|
void yield() {
|
|
}
|
|
|
|
bool ienabled() {
|
|
return false;
|
|
}
|
|
|
|
void iset(bool enable) {
|
|
}
|