summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordana <dana@dana.is>2024-12-26 09:36:45 -0600
committerdana <dana@dana.is>2024-12-26 10:09:25 -0600
commit6bb792dba89016c250bc9f2581c9c267dd322254 (patch)
tree436bc0514ff4a7d63c12af2aadc060f8ed645788 /ChangeLog
parent53251: _man: fix page completion on macOS, update fall-back paths, etc. (diff)
downloadzsh-6bb792dba89016c250bc9f2581c9c267dd322254.tar
zsh-6bb792dba89016c250bc9f2581c9c267dd322254.tar.gz
zsh-6bb792dba89016c250bc9f2581c9c267dd322254.tar.bz2
zsh-6bb792dba89016c250bc9f2581c9c267dd322254.tar.lz
zsh-6bb792dba89016c250bc9f2581c9c267dd322254.tar.xz
zsh-6bb792dba89016c250bc9f2581c9c267dd322254.tar.zst
zsh-6bb792dba89016c250bc9f2581c9c267dd322254.zip
53257: use monotonic clock where appropriate
update the following features to use the monotonic clock for calculating time deltas and intervals: * MAILCHECK parameter * PERIOD parameter * SECONDS parameter * %(nS.t.f) prompt-expansion sequence * time built-in's elapsed time and cpu % values * zsh/zftp ZFTP_TMOUT parameter * zsh/zprof timings also use CLOCK_MONOTONIC_RAW instead of CLOCK_MONOTONIC on macOS
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a58002d71..989cc0aa3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2024-12-26 dana <dana@dana.is>
+
+ * 53257: Doc/Zsh/params.yo, Doc/Zsh/prompt.yo,
+ Src/Modules/zftp.c, Src/Modules/zprof.c, Src/compat.c,
+ Src/exec.c, Src/hist.c, Src/init.c, Src/jobs.c, Src/params.c,
+ Src/prompt.c, Src/signals.c, Src/utils.c, Src/zsh.h,
+ Test/A08time.ztst, Test/D01prompt.ztst, Test/D04parameter.ztst:
+ use monotonic clock where appropriate
+
2024-12-16 dana <dana@dana.is>
* 53251: Completion/Unix/Command/_man: fix page completion on