aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Möllmann2024-11-06 14:34:47 +0100
committerGerd Möllmann2024-11-06 14:34:47 +0100
commitcc3c05cad9ef42cd7b0231efdbdba228aa06de92 (patch)
tree77096bef9589c84cc41ca954105b8b22e18b088f
parentc42b90b21a4efb3c5a8ebc6e3bd6be2908d1f2ac (diff)
downloademacs-cc3c05cad9ef42cd7b0231efdbdba228aa06de92.tar.gz
emacs-cc3c05cad9ef42cd7b0231efdbdba228aa06de92.zip
Revert "Mark atimer allocation as ambiguous root"
This reverts commit c42b90b21a4efb3c5a8ebc6e3bd6be2908d1f2ac.
-rw-r--r--src/atimer.c9
1 files changed, 1 insertions, 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
17along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ 17along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
18 18
19#include <config.h> 19#include <config.h>
20#include "igc.h"
21 20
22#ifdef WINDOWSNT 21#ifdef WINDOWSNT
23#define raise(s) w32_raise(s) 22#define raise(s) w32_raise(s)
@@ -133,13 +132,7 @@ start_atimer (enum atimer_type type, struct timespec timestamp,
133 free_atimers = t->next; 132 free_atimers = t->next;
134 } 133 }
135 else 134 else
136 { 135 t = xmalloc (sizeof *t);
137#ifdef HAVE_MPS
138 t = igc_xzalloc_ambig (sizeof *t);
139#else
140 t = xmalloc (sizeof *t);
141#endif
142 }
143 136
144 /* Fill the atimer structure. */ 137 /* Fill the atimer structure. */
145 memset (t, 0, sizeof *t); 138 memset (t, 0, sizeof *t);