Andrew Brownsword

Results 10 issues of Andrew Brownsword

I've noticed that I'm getting these errors in the gdb console: Traceback (most recent call last): File "/home/andrew/.gdb/libcxx-pretty-printers/src/libcxx/v1/printers.py", line 615, in __next__ item = self.rbiter.__next__() File "/home/andrew/.gdb/libcxx-pretty-printers/src/libcxx/v1/printers.py", line 673, in...

I just tracked down a problem that was causing my gdb to mysteriously abort when it hit a breakpoint early in my program's execution. After a bit of digging through...

I am serializing a struct A which contains a few members include two length one std::vectors of struct B. B contains, among other things, a couple of strings. Struct A...

needs more info
tech support

I am contemplating using Cereal in a heavily threaded process, and the discussion in the docs about a couple of global tables being managed under mutexes seems a bit concerning....

Looking at the latest plant_uml example code, I think it is safe to say that this goes beyond being simple. This is a very useful capability, and it would make...

Add new function us_socket_transfer by extracting existing code for handling accepted sockets, and calling it from its former location. The new function can now be used to hand off a...

For a project I've just been working on, I needed to be able to transfer in a socket that I created outside of uWebSockets/uSockets. I modified loop.c by moving the...

I am generating a config file, and getting the following error message: ``` Cannot add a Service with the same UUID '000000CC-0000-1000-8000-0026BB765291' as another Service in this Accessory without also...

``` struct us_poll_t *p = us_create_poll(loop, fallthrough, sizeof(struct us_internal_callback_t) + ext_size); int timerfd = timerfd_create(CLOCK_REALTIME, TFD_NONBLOCK | TFD_CLOEXEC); if (timerfd == -1) { return NULL; } ``` Leaks p if...

In straightforward spdlog-using code (that was changed a couple of years back to use FMT_STRING everywhere), after updating to spdlog 1.15.1 and an external fmt 11.1.3, I'm seeing this across...