// @(#)root/thread:$Id$ // Author: Victor Perev 10/08/97 /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ ////////////////////////////////////////////////////////////////////////// // // // TThreadImp // // // // This class implements threads. A thread is an execution environment // // much lighter than a process. A single process can have multiple // // threads. The actual work is done via the TThreadImp class (either // // TPosixThread or TWin32Thread). // // // ////////////////////////////////////////////////////////////////////////// #include "TThreadImp.h" ClassImp(TThreadImp)