/* * threads-types.h: Generic thread typedef support (includes * system-specific files) * * Author: * Dick Porter (dick@ximian.com) * * (C) 2001 Ximian, Inc */ #ifndef _MONO_METADATA_THREADS_TYPES_H_ #define _MONO_METADATA_THREADS_TYPES_H_ #include #ifdef HAVE_PTHREAD #include #else #warning "No thread support found!" #include #endif extern void mono_threads_synchronisation_init(MonoThreadsSync *); extern void mono_threads_synchronisation_free(MonoThreadsSync *); #endif /* _MONO_METADATA_THREADS_TYPES_H_ */