-
Thank you for this great library. I just wanted to report that arrays, unions and bitfields are all not working and causing compilation issues.
I can imagine supporting any of these 3 might be hard, …
-
### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/kvrocks/issues) and found no similar issues.
### Version
Docker Image SHA:707f93473e7265df39593d38d83…
-
### Expected Behavior
No compilation error
### Current Behavior
Structures containing bitfields give the compile errors below, packing seems to make no difference (was not expecting it to make an…
-
Consider `endian3.c`:
```c
#include
#include
struct S {
#if __BYTE_ORDER == __LITTLE_ENDIAN
unsigned b : 12;
unsigned a : 12;
#else
unsigned a : 12;
unsigned b : 12;
#endif
};
i…
-
Hello, your project looks very good. Can I ask you few questions about it?
Redis provides time complexity for each it's command. Is it possible to get this information for your commands too? For ex…
-
```c
struct Test {
unsigned foobar : 1;
};
```
```zig
pub const struct_Test = @OpaqueType();
```
ghost updated
2 months ago
-
I guess bitfields are not yet handled by DStep: certainly the bitfields in libdvbv5 header files do not seem to map to anything looking like a bitfield in D.
The current problem I have though is th…
-
Hello, I am trying to implement the function of adding some custom header to the packet, this function is specifically when a specific condition is met, the packet will resubmit once, and then it will…
-
A simple way to acces fields of a bitfield would be usefull.
```
cstruct some_struct {
uint2_t field1;
uint6_t field2;
uint8_t some_byte;
uint16_t rest
} as little_endian
```
-
In general, the definitions for a lot of the registers defined in `SCB`, `SAU`, etc., are rather deficient, but my current complaint is the Fault Status registers.
The ones defined in `SCB` are jus…