FACT++
1.0
Main Page
Related Pages
Namespaces
Classes
Files
Examples
long dim_start_thread
(
void *(*)(void *)
thread_ast
,
long
tag
)
Definition at line
223
of file
dim_thr_old.c
.
Referenced by
dim_signal_cond()
.
224
{
225
pthread_t t_id;
226
pthread_attr_t attr;
227
228
#if defined (LYNXOS) && !defined (__Lynx__)
229
pthread_attr_create(&attr);
230
pthread_create(&t_id, attr, (
void
*)thread_ast, (
void
*)tag);
231
#else
232
pthread_attr_init(&attr);
233
pthread_create(&t_id, &attr, thread_ast, (
void
*)tag);
234
#endif
235
return
((
long
)t_id);
236
}
Here is the caller graph for this function:
dim
src
dim_thr_old.c
Generated on Sun Sep 18 2016 20:50:29 for FACT++ by
1.8.11