00001 /* 00002 * Copyright 1999-2006 by Codemesh, Inc. ALL RIGHTS RESERVED. 00003 */ 00004 #ifndef xmog_thread_factory_inc 00005 #define xmog_thread_factory_inc 00006 00062 00063 00072 class XMOG_DECLSPEC xmog_thread_factory 00073 { 00074 public: 00075 00084 static int spawn( XMOG_THREAD_FUNC func, 00085 void * arg = NULL ); 00086 00098 static int spawn_n( size_t count, 00099 XMOG_THREAD_FUNC func, 00100 void * arg = NULL ); 00101 00102 00109 static void wait_n( int grp_id ); 00110 00111 }; 00112 00113 00114 #endif /* xmog_thread_factory_inc */
1.4.1