cvkem

Results 9 comments of cvkem

Probably the build of the core-library failed, due to the compiler-error mentioned above. So if I apply a manual fix to the C-file, compile it and add the .o file...

By the way, did you also investigate other scheme-to-C compilers (like Chicken)? If so, what are the essential advantages of the Gambit-C compiler? The long compilation times of Gambit-C, seem...

I digged one step deeper why gambit complains about duplicate definitions. When looking in the core.scm file I notice two different definitions of the following three functions: - cljscm.core/vec -...

When turning on --enable-single-host the number of issues/error increases, but all errors are related to the same three redefinitions. So option 1 (I should use an older Gambit-c version) seems...

I run into the same issue I think. I have a piece of code that does an async call (upload binary blob to S3). This code is tested and works...

I did all steps proposed by @Darksonn and analyzed using Tokio-console combined with gdb to take snapshots in different parts of (execution of) the program. This analysis shows: **Observations via...

Further analysis revealed my issue is option 3. I am using a mix of Sync and Async code. The three patterns described in https://tokio.rs/tokio/topics/bridging where difficult in my context, so...

My issues as mentioned in Januari/februari in this thread (related to mixing of Synchronous and Asynchronous code were resolved by https://github.com/cvkem/async_bridge (generic solution I developed to make mixing of code...

Thanks @wing328 for flagging the issue and providing the link with the details. Based on this information I was able to reproduce the issue on my local machine and provide...