Ryan Sepassi

Results 27 comments of Ryan Sepassi

Thanks for digging into it. I don't seem to be able to reopen the issue. Has to be a maintainer?

To work around this for my use case, I made a comptime bump allocator and ArrayList that aren't quite drop-in replacements but were close enough for my own code. I...

Note the need for packed structs was because of: ```zig ziglib/libcomptime/comptimearray.zig:85:28: error: comptime mutation of a reinterpreted pointer requires type 'view_ast.Ast.NameLookupSingle' to have a well-defined memory layout new_item_ptr.* = item;...

Got it, thank you. I'd be happy for now if I could get a not-really-replacement Allocator and ArrayList working (similar to https://gist.github.com/rsepassi/d356ea5cfebf37bd9ba8c5d175a7ea30), but I seem to have hit some bug...

Yeah, I can confirm that cimport of sqlite.h and a regular build of the amalgamation works fine, but translate c breaks because of the switch issue reported here. The break...

Hitting this snag in comptime. I'm trying to call some functions that expect an Allocator at comptime. I'm fine pre-declaring the memory and using a FixedBufferAllocator. Unfortunately as @iagocq points...

That'd be awesome, thank you.

libuv seems to just run `getaddrinfo` (Unix-like, `GetAddrInfoW` for Windows) in a thread pool. https://github.com/c-ares/c-ares is what libcurl uses and seems to be manually constructing the DNS requests and directly...

https://github.com/rsepassi/zigcoro/pull/13 `zig build test-aio` Not the cleanest repro. I think a simpler repro would simply start 2 timers in parallel, e.g. 1 for 10ms and another for 20ms, wait for...