[Date Prev][Date Next] [Chronological] [Thread] [Top]

threads on AIX



Hello,
I managed to compile a simple C program using one thread on AIX
(with -lpthreads), but the thread never runs !?
(it worked perfectly under Linux or Solaris)
The version of AIX is 4.2
I wrote the simple code :
    pthread_t analyse ;
    pthread_create(&analyse, NULL, &analyse_t, 0) ;
 
Do you know that problem ?
Thanks.