Skip to content
Snippets Groups Projects
Commit 396d30ed authored by Herbert Valerio Riedel's avatar Herbert Valerio Riedel :man_dancing:
Browse files

Fix markdown markup [skip ci]

parent e5a24114
No related branches found
No related tags found
No related merge requests found
...@@ -6,25 +6,20 @@ ...@@ -6,25 +6,20 @@
* Tighten `SafeHaskell` bounds for GHC 7.10+ * Tighten `SafeHaskell` bounds for GHC 7.10+
* Add haddock comments on `RTLD_NEXT` and `RTLD_DEFAULT` * Add haddock comments on `RTLD_NEXT` and `RTLD_DEFAULT`
* Deprecate function `haveRtldLocal` * Deprecate function `haveRtldLocal`
* Fix `getGroupEntryForID/getGroupEntryForName' on Solaris. Solaris uses * Fix `getGroupEntryForID/getGroupEntryForName` on Solaris. Solaris uses
CPP macros for required getgrgid_r and getgrnam_r functions definition CPP macros for required `getgrgid_r` and `getgrnam_r` functions definition
so the fix is to change from C ABI calling convention to C API calling so the fix is to change from C ABI calling convention to C API calling
convention convention
* Fix potential type-mismatch in `telldir`/`seekdir` FFI imports * Fix potential type-mismatch in `telldir`/`seekdir` FFI imports
* Use CAPI FFI import for `truncate` to make sure the LFS-version is used. * Use CAPI FFI import for `truncate` to make sure the LFS-version is used.
* `executeFile`: Fix `ENOTDIR` error for entries with non-directory * `executeFile`: Fix `ENOTDIR` error for entries with non-directory
components in `PATH` (and instead skip over non-directory `PATH`-elements) components in `PATH` (and instead skip over non-directory `PATH`-elements)
* New functions in `System.Posix.Unistd`: * New functions in `System.Posix.Unistd`:
- `fileSynchronise` (aka `fsync(2)`), and - `fileSynchronise` (aka `fsync(2)`), and
- `fileSynchroniseDataOnly` (aka `fdatasync(2)`) - `fileSynchroniseDataOnly` (aka `fdatasync(2)`)
* New module `System.Posix.Fcntl` providing * New module `System.Posix.Fcntl` providing
- `fileAdvise` (aka `posix_fadvise(2)`), and - `fileAdvise` (aka `posix_fadvise(2)`), and
- `fileAllocate` (aka `posix_fallocate(2)`) - `fileAllocate` (aka `posix_fallocate(2)`)
* Fix SIGINFO and SIGWINCH definitions * Fix SIGINFO and SIGWINCH definitions
## 2.7.0.1 *Mar 2014* ## 2.7.0.1 *Mar 2014*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment