swh:1:snp:af87cd67498ef4fe47c76ed3e7caffe5b61facaf
Raw File
Tip revision: 221961204ed2bf235e78be060f5f608410561206 authored by Unknown Author on 14 January 2003, 18:19:01 UTC
This commit was manufactured by cvs2svn to create tag 'v3-05-00'.
Tip revision: 2219612
TThreadImp.cxx
// @(#)root/thread:$Name:  $:$Id: TThreadImp.cxx,v 1.1.1.1 2000/05/16 17:00:48 rdm Exp $
// 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    //
// TThreadPosix, TThreadSolaris or TThreadNT).                          //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#include "TThreadImp.h"


ClassImp(TThreadImp)
back to top