densh / scala-offheap

Experimental type-safe off-heap memory for Scala.
BSD 3-Clause "New" or "Revised" License
532 stars 35 forks source link

Add support for allocation and field alignment #8

Closed densh closed 9 years ago

densh commented 9 years ago

Apparently some hardware architectures like SPARC entirely miss support for unaligned memory access. This means that we need to add option to align fields in data classes and their allocations.

densh commented 9 years ago

Almost done with this one.

densh commented 9 years ago

Fixed in https://github.com/densh/scala-offheap/pull/27