mukul-rathi / bolt

Bolt is a language with in-built data-race freedom!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Heap memory management

dumblob opened this issue · comments

I couldn't find much information about memory management. But from a language claiming data race freeness I'd expect to have memory allocation and freeing solved in compile time.

Does Bolt use any garbage collector? Or does it ignore free()ing the allocated (malloc() etc.) memory? Could you shed some light on how does all this work together with threading?

I can imagine something like Lobster's automatic memory management and Nim's ARC or Vaporization. But with proved correctness against data races among threads.

Hey, I use GC_malloc which handles GC for now. (I haven’t got round to properly implementing my own custom GC). I think that whilst we’ve seen data race freedom associated with memory management in other languages, Bolt’s capability-based type system is orthogonal to memory management (see Pony, Encore for similar GC-based languages)

Ok, thanks. That answered my question 😉.