1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-21 05:21:37 -07:00

Revert "Mark atimer allocation as ambiguous root"

This reverts commit c42b90b21a.
This commit is contained in:
Gerd Möllmann 2024-11-06 14:34:47 +01:00
parent c42b90b21a
commit cc3c05cad9

View file

@ -17,7 +17,6 @@ You should have received a copy of the GNU General Public License
along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#include <config.h>
#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);