- United States
- https://bancino.net
- Joined on
2024-09-14
Wow, 2GB is a lot. So much for Telodendria being lightweight, haha. But yeah, I'm not surprised, I kind of figured that PR would cause some problems for us down the road.
I'd say the next…
Ah that's a good point. We can certainly have a function that produces a C string for when it's needed, but unfortunately I don't know if there's anything we can do if a NULL
shows up in those…
Good catch. The reason I did this was precisely because C strings are NULL
-terminated, so I agree that we should move toward #4 if we really want to solve this issue, as that's really the only…
volatile
bitfields must not be used as synchronization primites
I actually am not so sure this is a big issue, because those variables are only ever modified by the main thread; it's not like they're being modified asynchronously. They're only written by one…