From a3a6ed0f1ac7db802781403a04c6a8a3378af9e6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gerd=20M=C3=B6llmann?= Date: Wed, 6 Nov 2024 14:34:47 +0100 Subject: [PATCH] Revert "Mark atimer allocation as ambiguous root" This reverts commit c42b90b21a4efb3c5a8ebc6e3bd6be2908d1f2ac. (cherry picked from commit cc3c05cad9ef42cd7b0231efdbdba228aa06de92) --- src/atimer.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/atimer.c b/src/atimer.c index 5bd282a310d..8253ae3a166 100644 --- a/src/atimer.c +++ b/src/atimer.c @@ -17,7 +17,6 @@ You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see . */ #include -#include "igc.h" #ifdef WINDOWSNT #define raise(s) w32_raise(s) @@ -133,13 +132,7 @@ start_atimer (enum atimer_type type, struct timespec timestamp, free_atimers = t->next; } else - { -#ifdef HAVE_MPS - t = igc_xzalloc_ambig (sizeof *t); -#else - t = xmalloc (sizeof *t); -#endif - } + t = xmalloc (sizeof *t); /* Fill the atimer structure. */ memset (t, 0, sizeof *t); -- 2.39.5