Earlier quoted context omitted.
This works a lot better in JavaScript, which is exactly this model - a single threaded executor with async await. The problem you talk about is solved with function colouring. Async functions are marked as such. In general, sync functions can’t call async functions. (Well, you can invoke them. You just can’t run them to completion before returning). For all the complaints about function colouring, I’m glad JavaScript…
Until every function is async.
Sync functions perform better than async functions, and they give more guarantees to the caller. They're strictly better, when you can use them.
If you find yourself making everything async, your design is bad and you should refactoring your code.