Fixed deterministic serialization on Windows.
This commit is contained in:
byuu
2019-10-17 21:42:42 +09:00
parent 9f86a3be26
commit 30d7fa1923
13 changed files with 41 additions and 45 deletions

View File

@@ -33,10 +33,6 @@ static void springboard(int ignored) {
}
}
const char* co_method() {
return "sjlj";
}
cothread_t co_active() {
if(!co_running) co_running = &co_primary;
return (cothread_t)co_running;
@@ -140,6 +136,10 @@ void co_switch(cothread_t cothread) {
}
}
int co_serializable() {
return 0;
}
#ifdef __cplusplus
}
#endif