From 95d96ec26bf3d7749a6cdae60bd0a404e16425a8 Mon Sep 17 00:00:00 2001 From: Stas Boukarev Date: Sat, 20 Feb 2016 23:40:49 +0300 Subject: [PATCH] Don't free thread->interrupt_data separately. It's a part of the thread structure now. --- src/runtime/thread.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/runtime/thread.c b/src/runtime/thread.c index 99a7c0e6a..a1e741272 100644 --- a/src/runtime/thread.c +++ b/src/runtime/thread.c @@ -452,12 +452,6 @@ undo_init_new_thread(struct thread *th, init_thread_data *scribble) os_sem_destroy(th->state_not_stopped_sem); #endif -#if defined(LISP_FEATURE_WIN32) - free((os_vm_address_t)th->interrupt_data); -#else - os_invalidate((os_vm_address_t)th->interrupt_data, - (sizeof (struct interrupt_data))); -#endif #ifdef LISP_FEATURE_MACH_EXCEPTION_HANDLER mach_lisp_thread_destroy(th); -- 2.11.4.GIT