Thomas van Doornmalen
Thomas van Doornmalen
I've been having a few issues with a library since it started to use the `_Atomic` type qualifier. ### Input C/C++ Header ```C extern _Atomic(int) foo; ``` ### Bindgen Invocation...
I'm trying to use shared memory following [this example](https://github.com/ryuanlu/code-recipes/blob/f1dbf224fb016217e5d12cbdf51a1a79a9825b2c/x11grab/x11grab.c). For this to work I need to create an `XshmSegmentInfo` and change the values of its fields. I have found a...
Most methods in jlrs map to one or more functions in the Julia C API. In order to make jlrs more accessible to people who are already familiar with this...
I want to be able to use GTK.jl in combination with jlrs, in particular I want it to be possible to have multiple GR plots open and manipulate them without...
The only information that's currently available is contained within the docs. It's hard to provide a step-by-step tutorial that progressively explains how to use jlrs that way, a website and...
Many places use `T` for the generic target type. Exclusively using `Tgt` adds clarity and makes `T` available for other generics.
Currently the only way to use Julia from multiple threads is by using the async runtime and send tasks to it. I'd like it to be possible to use a...
realfft and RustDCT exist, it would be nice to use them to add support for these transformations.
Currently only 1-D data is supported. ndrustfft supports N-dimensional data, but I think it's better to provide similar functionality than to use that crate directly to get rid of unnecessary...
While the main goal of this package is generating wrappers that can be used by crates that use jlrs, this is an annoying limitation for people who want to use...