Mahdi Rakhshandehroo

Results 6 issues of Mahdi Rakhshandehroo

This looks like it could be a very useful library for my use case, but the two very short examples provided give no insight into how I can use the...

enhancement

Thanks for this great library! I think that having something similar to the following functions: ```c void* aco_yield_value(); void aco_resume_value(aco_t* aco, void* val); ``` would be very convenient. I see...

Hey Daniel, Thanks for your work on this library. I tried comparing the performance of ReactPhysics3D against [Rapier3D](https://rapier.rs/), a physics engine written in Rust. My results show that Rapier3D is...

Follow-up to #123, this enables the use of io_uring's automatic buffer selection for those operations.

`io_uring` supports setting `IOSQE_BUFFER_SELECT` for the `read`, `readv`, `recv` and `recvmsg` opcodes. But the library only seems to define a `buf_group` field for `Read` and `Recv`. Could `buf_group` be added...

This snippet of code in your `set_context` subroutine: ```asm pushq %r8 xorl %eax, %eax ret ``` should be changed to: ```asm xorl %eax, %eax jmp *%r8 ``` And likewise with...