From: Ken Brown Date: Sun, 21 Jun 2015 20:18:48 +0000 (-0400) Subject: Drop support for CPU profiling on Cygwin X-Git-Tag: emacs-25.0.90~1685 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5fac0dee87ea5d4aa90ee93606c19785919da105;p=emacs.git Drop support for CPU profiling on Cygwin * src/syssignal.h (PROFILER_CPU_SUPPORT): Don't define on Cygwin. (Bug#20843) --- diff --git a/src/syssignal.h b/src/syssignal.h index b536eb501b8..28824003c5d 100644 --- a/src/syssignal.h +++ b/src/syssignal.h @@ -36,7 +36,9 @@ extern void unblock_tty_out_signal (sigset_t const *); # define HAVE_ITIMERSPEC #endif -#if (defined SIGPROF && !defined PROFILING \ +/* On Cygwin, setitimer does not support ITIMER_PROF, so we can't + support CPU profiling. */ +#if (defined SIGPROF && !defined PROFILING && !defined CYGWIN \ && (defined HAVE_SETITIMER || defined HAVE_ITIMERSPEC)) # define PROFILER_CPU_SUPPORT #endif