Results 8 comments of Daroc Alden

The clippy check appears to be failing because of the wildcard imports in this pull request. I'm happy to change them if needed, but I'd argue that wildcard-importing the prelude...

I wasn't sure, so I went to go double-check what the implementation was. Turns out that the `std::thread` namespace isn't included in `no-std-compat`. I realized that I should have been...

Yes, it is. I'm writing an operating system kernel in the style of a Lisp Machine, and need to use some form of garbage collection to implement the language that...

I've just pushed the changes that would be needed to allow a user to supply their own `spawn` function. Note that this is not quite ready yet - the no-std-compat...

That sounds perfectly reasonable; the tests need to be updated to use the new feature flag and compatibility library, but that's pretty straightforward. The real blocker on actually getting the...

Okay. I've done some research, and I have further thoughts: It looks like pre-emptive multitasking isn't well supported for no-std. I assumed that there would be a package that implemented...

I've just pushed a commit that essentially does that - it reverts the change that allowed users to specify their own `spawn`, and instead performs the work in the thread...

Sorry about the delay on my end as well -- I somehow did not see your message. I've merged up, and hopefully CI will pass. If not, I'll fix it...