Alkis Evlogimenos

Results 6 issues of Alkis Evlogimenos

https://github.com/edef1c/libfringe This crate has rather nice approach to switching contexts: - instead of saving all callee registers it issues asm to denote they are clobbered. Then the compiler saves only...

accepted
request

The current scheduler has the following problems: 1) it needs configuration (workers, io_workers, run_on_io): it would be nicer if user does not need to configure anything and yet get maximum...

enhancement

What's the recommended library for http client/server for may? If none exists perhaps this should be top priority to increase adoption?

question

This can allow some usecases: - for a given coroutine/scope limit parallelism to 1 - pin a coroutine/scope to a specific thread (UI thread for example) Perhaps this is already...

question

Currently a `Slab` uses 24 bytes per element. This overhead comes from `Entry` being an enum. To remove this overhead completely, `Entry` must become a union. But then: 1) iteration...

What do you think about a parallel library to this that requires the use of Slab(s) and uses usize as pointers to other nodes? This eliminates the lifetime pollution when...