From a45ef7a856b2b6265098dc617450bb21784b5512 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sun, 12 Jun 2022 10:17:25 -0500 Subject: [PATCH] Update CHANGELOG to reflect new function renames. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08dc6766..71f1eb89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,12 @@ All notable changes to this project will be documented in this file. ## Unreleased - ??? +- Add `ffi/` module for interfacing with dynamic libraries and raw function pointers. - Add `debugger` - an easy to use debugger function that just takes a fiber. - `dofile` will now start a debugger on errors if the environment it is passed has `:debug` set. - Add `debugger-on-status` function, which can be passed to `run-context` to start a debugger on abnormal fiber signals. - Allow running scripts with the `-d` flag to use the built-in debugger on errors and breakpoints. -- Add `raw-native`, `native-lookup`, and `native-close` for interfacing with dynamic libraries. - Add mutexes (locks) and reader-writer locks to ev module for thread coordination. - Add `parse-all` as a generalization of the `parse` function. - Add `os/cpu-count` to get the number of available processors on a machine