diff options
| author | Gerd Möllmann | 2024-11-06 14:34:47 +0100 |
|---|---|---|
| committer | Gerd Möllmann | 2024-11-06 14:34:47 +0100 |
| commit | cc3c05cad9ef42cd7b0231efdbdba228aa06de92 (patch) | |
| tree | 77096bef9589c84cc41ca954105b8b22e18b088f | |
| parent | c42b90b21a4efb3c5a8ebc6e3bd6be2908d1f2ac (diff) | |
| download | emacs-cc3c05cad9ef42cd7b0231efdbdba228aa06de92.tar.gz emacs-cc3c05cad9ef42cd7b0231efdbdba228aa06de92.zip | |
Revert "Mark atimer allocation as ambiguous root"
This reverts commit c42b90b21a4efb3c5a8ebc6e3bd6be2908d1f2ac.
| -rw-r--r-- | src/atimer.c | 9 |
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 | |||
| 17 | along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ | 17 | along 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); |