0.9.2.39:
[sbcl.git] / src / runtime / validate.c
index f4c8bfe..8b62b47 100644 (file)
@@ -80,16 +80,14 @@ validate(void)
 }
 
 void 
-protect_control_stack_guard_page(pid_t t_id, int protect_p) {
-    struct thread *th = find_thread_by_pid(t_id);
+protect_control_stack_guard_page(struct thread *th, int protect_p) {
     os_protect(CONTROL_STACK_GUARD_PAGE(th),
               os_vm_page_size,protect_p ?
               (OS_VM_PROT_READ|OS_VM_PROT_EXECUTE) : OS_VM_PROT_ALL);
 }
 
 void 
-protect_control_stack_return_guard_page(pid_t t_id, int protect_p) {
-    struct thread *th = find_thread_by_pid(t_id);
+protect_control_stack_return_guard_page(struct thread *th, int protect_p) {
     os_protect(CONTROL_STACK_RETURN_GUARD_PAGE(th),
               os_vm_page_size,protect_p ?
               (OS_VM_PROT_READ|OS_VM_PROT_EXECUTE) : OS_VM_PROT_ALL);