FACT++  1.0
dim_long dim_start_thread ( void *(*)(void *)  thread_ast,
dim_long  tag 
)

Definition at line 231 of file dim_thr.c.

Referenced by dim_signal_cond(), main(), and DimThread::start().

232 {
233  pthread_t t_id;
234  pthread_attr_t attr;
235 
236 #if defined (LYNXOS) && !defined (__Lynx__)
237  pthread_attr_create(&attr);
238  pthread_create(&t_id, attr, (void *)thread_ast, (void *)tag);
239 #else
240  pthread_attr_init(&attr);
241  pthread_create(&t_id, &attr, thread_ast, (void *)tag);
242 #endif
243  return((dim_long)t_id);
244 }
long dim_long
Definition: dim_common.h:57

+ Here is the caller graph for this function: