Results 30 comments of doodspav

yup getting this rn - ill tell u if i figure it out (btw for anyone who didnt figure out the previous ones, line depreciated mac headers)

change `msg = op.message` to: ``` msg = op.message if msg.toType == 0: msg.to = msg._from ```

Thnx was searching for endpoint

Hi, I'm honestly happy that anyone's using this library; I started it as a personal project for my own stuff, and figured it would be too specific a niche for...

@ronny-rentner did you have any concerns about the API? I'm rewriting it over the next week, so if you felt that some part of it could be improved, now would...

It sounds like you want a lock; the issue being that atomic types (at least in this library) are intended to be lock-free, so they will always busy wait. I...

@laytan Could you clarify if you mean that the allocator doesn't have a way to map a pointer to the original size requested by the user, or to the size...

This is how I expect allocators to behave normally. - usually, an allocator will know the size of its allocations (the size allocated, not the size requested by the user)...

@laytan I see that your `set_odin_allocator` implements my proposal already (and takes note of the points I made). Based on this, and the points I made about how niche this...

@laytan Sorry for the late response, I was quite busy over the weekend. I'm torn now, because I was going to say that `realloc` could just be implemented as `malloc...