aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorEli Zaretskii2012-10-27 21:32:30 +0200
committerEli Zaretskii2012-10-27 21:32:30 +0200
commit2e612797ce51736ccdcd1076b3d0f36eb4c17182 (patch)
treec2b35aa3d8b325a7c3927fb724ef034ebd32f0c8 /src/ChangeLog
parent15cc05e98486f43b21aaf6e7428fa9f08ddd9e94 (diff)
downloademacs-2e612797ce51736ccdcd1076b3d0f36eb4c17182.tar.gz
emacs-2e612797ce51736ccdcd1076b3d0f36eb4c17182.zip
Use 'volatile' types for communications between timer thread and main thread.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 2efebc6754d..398d19fe6f2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -4,8 +4,8 @@
4 possible, for ITIMER_PROF count only times the main thread 4 possible, for ITIMER_PROF count only times the main thread
5 actually executes. 5 actually executes.
6 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now 6 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
7 ULONGLONG types. Likewise for all the other data which was 7 'volatile ULONGLONG' types. All the other data which was
8 previously clock_t. 8 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
9 (GetThreadTimes_Proc): New typedef. 9 (GetThreadTimes_Proc): New typedef.
10 (w32_get_timer_time): New function, returns a suitable time value 10 (w32_get_timer_time): New function, returns a suitable time value
11 for the timer. 11 for the timer.