Changes between Version 28 and Version 29 of Commentary/Rts
- Timestamp:
- 12/11/12 08:41:01 (5 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Commentary/Rts
v28 v29 7 7 * It includes all the bits required to execute Haskell code that aren't compiled into the code itself. 8 8 For example, the RTS contains the code that knows how to raise an exception when you call {{{error}}}, 9 and code to implement the multi-precision {{{Integer}}} operations (via the GMP library).9 code to allocate {{{Array#}}} objects, and code to implement `takeMVar#`. 10 10 11 11 * It includes a sophisticated storage manager, including a multi-generational garbage collector with copying … … 19 19 * Heap-profiling (of various kinds), time-profiling and code coverage of Haskell code are included. 20 20 21 * Support for Software Transactional Memory is now included...21 * Support for Software Transactional Memory. 22 22 23 23 Next, we try to make sense of how it all fits together.
