Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix a few Note inconsistencies | Ben Gamari | 2022-02-01 | 1 | -1/+0 |
| | |||||
* | rts: Refactor unloading of foreign export StablePtrs | Ben Gamari | 2020-09-18 | 1 | -18/+35 |
| | | | | | | Previously we would allocate a linked list cell for each foreign export. Now we can avoid this by taking advantage of the fact that they are already broken into groups. | ||||
* | rts: Refactor foreign export tracking | Ben Gamari | 2020-09-18 | 1 | -0/+113 |
This avoids calling `libc` in the initializers which are responsible for registering foreign exports. We believe this should avoid the corruption observed in #18548. See Note [Tracking foreign exports] in rts/ForeignExports.c for an overview of the new scheme. |