~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to src/gc/pthread_support.c

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2007-04-09 11:51:51 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070409115151-ql8cr0kalzx1jmla
Tags: 0.9i-20070324-2
Upload to unstable. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
598
598
    } else {
599
599
        prev -> next = p -> next;
600
600
    }
 
601
        
 
602
#ifdef GC_DARWIN_THREADS
 
603
        mach_port_deallocate(mach_task_self(), p->stop_info.mach_thread);
 
604
#endif
 
605
        
601
606
    GC_INTERNAL_FREE(p);
602
607
}
603
608
 
620
625
    } else {
621
626
        prev -> next = p -> next;
622
627
    }
 
628
        
 
629
#ifdef GC_DARWIN_THREADS
 
630
        mach_port_deallocate(mach_task_self(), p->stop_info.mach_thread);
 
631
#endif
 
632
        
623
633
    GC_INTERNAL_FREE(p);
624
634
}
625
635