diff options
| author | Paul Eggert | 2012-10-04 00:23:35 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-10-04 00:23:35 -0700 |
| commit | 7509f454d2351e8ea6ee158637bb16deb9f904bc (patch) | |
| tree | 1fabd929896c2ae82c054ed0344d58fb3f5ca876 | |
| parent | bb1dfdadd507bb4b77595c87875ef807c101ed7b (diff) | |
| download | emacs-7509f454d2351e8ea6ee158637bb16deb9f904bc.tar.gz emacs-7509f454d2351e8ea6ee158637bb16deb9f904bc.zip | |
Move ChangeLog entry to proper file.
| -rw-r--r-- | ChangeLog | 11 | ||||
| -rw-r--r-- | src/ChangeLog | 11 |
2 files changed, 11 insertions, 11 deletions
| @@ -9,17 +9,6 @@ | |||
| 9 | * m4/stdlib_h.m4, m4/sys_stat_h.m4: Update from gnulib. | 9 | * m4/stdlib_h.m4, m4/sys_stat_h.m4: Update from gnulib. |
| 10 | * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate. | 10 | * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate. |
| 11 | 11 | ||
| 12 | Port timers to OpenBSD, plus check for timer failures. | ||
| 13 | OpenBSD problem reported by Han Boetes. | ||
| 14 | * profiler.c (setup_cpu_timer): Check for failure of timer_settime | ||
| 15 | and/or setitimer. | ||
| 16 | (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER. | ||
| 17 | * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms | ||
| 18 | like OpenBSD, which has timer_settime but does not declare it. | ||
| 19 | OpenBSD does not define SIGEV_SIGNAL, so use that when deciding | ||
| 20 | whether to use itimerspec-related primitives. All uses of | ||
| 21 | HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC. | ||
| 22 | |||
| 23 | 2012-09-30 Paul Eggert <eggert@cs.ucla.edu> | 12 | 2012-09-30 Paul Eggert <eggert@cs.ucla.edu> |
| 24 | 13 | ||
| 25 | Merge from gnulib, incorporating: | 14 | Merge from gnulib, incorporating: |
diff --git a/src/ChangeLog b/src/ChangeLog index 744376b0efd..9790ff7d0d1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -4,6 +4,17 @@ | |||
| 4 | to avoid similar races. | 4 | to avoid similar races. |
| 5 | * keyboard.c (pending_signals): Now bool, not int. | 5 | * keyboard.c (pending_signals): Now bool, not int. |
| 6 | 6 | ||
| 7 | Port timers to OpenBSD, plus check for timer failures. | ||
| 8 | OpenBSD problem reported by Han Boetes. | ||
| 9 | * profiler.c (setup_cpu_timer): Check for failure of timer_settime | ||
| 10 | and/or setitimer. | ||
| 11 | (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER. | ||
| 12 | * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms | ||
| 13 | like OpenBSD, which has timer_settime but does not declare it. | ||
| 14 | OpenBSD does not define SIGEV_SIGNAL, so use that when deciding | ||
| 15 | whether to use itimerspec-related primitives. All uses of | ||
| 16 | HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC. | ||
| 17 | |||
| 7 | 2012-10-02 Paul Eggert <eggert@cs.ucla.edu> | 18 | 2012-10-02 Paul Eggert <eggert@cs.ucla.edu> |
| 8 | 19 | ||
| 9 | * profiler.c (handle_profiler_signal): Fix a malloc race | 20 | * profiler.c (handle_profiler_signal): Fix a malloc race |