00001 #ifndef GLIM_THREADS_HPP_ 00002 #define GLIM_THREADS_HPP_ 00003 00004 /** 00005 * Header-only utilities for working with POSIX threads. 00006 * 00007 * See POSIX threads:\n 00008 * http://www.opengroup.org/onlinepubs/007908799/xsh/threads.html 00009 * @file 00010 */ 00011 00012 /* 00013 - pthread_t thread; pthread_attr_t attr; pthread_attr_init( &attr ); 00014 - pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_DETACHED ); 00015 - pthread_attr_setscope( &attr, PTHREAD_SCOPE_PROCESS ); 00016 - pthread_create( &thread, &attr, PgBnCrossing_thread_wrapper, separate ); 00017 */ 00018 00019 #endif // GLIM_THREADS_HPP_
1.4.6