This by itself is gonna kill your program:

    if (pthread_create (NULL, &_threadAttr, ThreadMain, NULL))
                        {
                                printf ("\nERROR CREATING THREAD!\n");
                        }

You're doing a pthread_create() with a NULL thread handle.

--Chris


______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to