From: Lei Xia Date: Mon, 8 Nov 2010 20:14:24 +0000 (-0600) Subject: remove the reparant_threadd function from host os hooks X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=commitdiff_plain;h=58ea47f1e53d66fae94afb18a314bdfd8862948e;p=palacios-OLD.git remove the reparant_threadd function from host os hooks --- diff --git a/palacios/include/palacios/vmm.h b/palacios/include/palacios/vmm.h index a7f8cbe..ee70107 100644 --- a/palacios/include/palacios/vmm.h +++ b/palacios/include/palacios/vmm.h @@ -212,15 +212,6 @@ struct guest_info; thread; \ }) -#define V3_Reparent_Threadd() \ - do { \ - extern struct v3_os_hooks * os_hooks; \ - if((os_hooks) && (os_hooks)->reparent_threaded) { \ - (os_hooks)->reparent_threaded(); \ - } \ - } while(0) - - #endif /* ** */ @@ -309,7 +300,6 @@ struct v3_os_hooks { void (*interrupt_cpu)(struct v3_vm_info * vm, int logical_cpu, int vector); void (*call_on_cpu)(int logical_cpu, void (*fn)(void * arg), void * arg); void * (*start_thread_on_cpu)(int cpu_id, int (*fn)(void * arg), void * arg, char * thread_name); - void (*reparent_threadd)(void); #endif };