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:
parent
c42b90b21a
commit
cc3c05cad9
1 changed files with 1 additions and 8 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue