1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

* syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.

Suggested by Eli Zaretskii in
<http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
This commit is contained in:
Paul Eggert 2012-09-30 01:15:11 -07:00
parent 84f72efd0c
commit cb5b02667a
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
* syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
Suggested by Eli Zaretskii in
<http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
2012-09-30 Eli Zaretskii <eliz@gnu.org>
* profiler.c (Fprofiler_cpu_stop): Use timer_settime only if

View File

@ -29,7 +29,8 @@ extern void init_signals (bool);
#define FORWARD_SIGNAL_TO_MAIN_THREAD
#endif
#if defined SIGPROF && (defined HAVE_TIMER_SETTIME || defined HAVE_SETITIMER)
#if (defined SIGPROF && (defined HAVE_TIMER_SETTIME || defined HAVE_SETITIMER) \
&& !defined PROFILING)
# define PROFILER_CPU_SUPPORT
#endif