00001 // @(#)root/thread:$Id: TThreadImp.cxx 20882 2007-11-19 11:31:26Z rdm $ 00002 // Author: Victor Perev 10/08/97 00003 00004 /************************************************************************* 00005 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * 00006 * All rights reserved. * 00007 * * 00008 * For the licensing terms see $ROOTSYS/LICENSE. * 00009 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00010 *************************************************************************/ 00011 00012 ////////////////////////////////////////////////////////////////////////// 00013 // // 00014 // TThreadImp // 00015 // // 00016 // This class implements threads. A thread is an execution environment // 00017 // much lighter than a process. A single process can have multiple // 00018 // threads. The actual work is done via the TThreadImp class (either // 00019 // TPosixThread or TWin32Thread). // 00020 // // 00021 ////////////////////////////////////////////////////////////////////////// 00022 00023 #include "TThreadImp.h" 00024 00025 ClassImp(TThreadImp)