termoshtt / julia.rs

WIP: Rust binding to Julia
MIT License
4 stars 0 forks source link

Interacts with Julia's GC #1

Open termoshtt opened 5 years ago

termoshtt commented 5 years ago

Embedding Julia > Memory Managemen

https://docs.julialang.org/en/v1/manual/embedding/index.html#Memory-Management-1

Comments in Julia C sources

says

/*
  allocation and garbage collection
  . non-moving, precise mark and sweep collector
  . pool-allocates small objects, keeps big objects on a simple list
*/