From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: weis Received: (from weis@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id IAA16096 for caml-redistribution; Fri, 14 Jan 2000 08:48:46 +0100 (MET) Received: from nez-perce.inria.fr (nez-perce.inria.fr [192.93.2.78]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id UAA09054 for ; Thu, 13 Jan 2000 20:49:22 +0100 (MET) Received: from sunlight.informatik.uni-tuebingen.de (sunlight.Informatik.Uni-Tuebingen.De [134.2.11.7]) by nez-perce.inria.fr (8.8.7/8.8.7) with ESMTP id UAA17743 for ; Thu, 13 Jan 2000 20:49:21 +0100 (MET) Received: (from pfitzen@localhost) by sunlight.informatik.uni-tuebingen.de (8.9.1a/8.9.1) id UAA00911 for caml-list@inria.fr; Thu, 13 Jan 2000 20:49:20 +0100 (MET) Date: Thu, 13 Jan 2000 20:49:20 +0100 (MET) From: Juergen Pfitzenmaier Message-Id: <200001131949.UAA00911@sunlight.informatik.uni-tuebingen.de> To: caml-list@inria.fr Subject: Re: Threads Library Sender: weis Xavier Leroy wrote: > This is correct. Currently, there is no automatic reclaimation of > threads whose identifier (the associated Thread.t value) is > unreachable, because those threads could be "daemon" threads that do > useful work in the background. Why not use a special instance of Thread for daemon threads and reclaim only all normal uses of Thread that became unreachable ? pfitzen