logoalt Hacker News

jim33442today at 7:03 AM1 replyview on HN

You can't do dynamic memory with that, right? Not without a custom malloc implementation. So it's not all that comparable to pickle.


Replies

bregmatoday at 11:41 AM

Most modern C runtime libraries on POSIX OSes implement malloc() and friends using the mmap() system call.