https://github.com/root-project/root
Raw File
Tip revision: 708d2fe5bc0233e86cd484156edfd46bd399af4b authored by Rene Brun on 27 August 2008, 14:30:46 UTC
Tagging dev version 5.21/02
Tip revision: 708d2fe
pthread.h
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (cint@pcroot.cern.ch)
 *
 * For the licensing terms see the file COPYING
 *
 ************************************************************************/
/****************************************************************
* pthread.h
*****************************************************************/
#ifndef G__PTHREAD_H
#define G__PTHREAD_H

/* NOTE: pthread.dl is not generated by default. 
 * Goto $CINTSYSDIR/lib/pthread directory and do 'sh setup' if you use UNIX. */
#ifndef G__PTHREADDLL_H
//#pragma include_noerr "pthread.dll"
#pragma permanent_link pthread.dll
#endif

#ifndef __MAKECINT__
#pragma ifndef G__PTHREADDLL_H /* G__PTHREADDLL_H is defined in pthread.dll */
#pragma message Note: pthread.dll is not found. Do 'sh setup' in $CINTSYSDIR/lib/pthread directory if you use UNIX.
#pragma endif
#endif

#endif
back to top