Win copability for posix threads added

This commit is contained in:
Eugen Tarasov 2015-08-13 17:44:46 +03:00
parent cf2cb4236a
commit 13d840c628
2 changed files with 5 additions and 1 deletions

View File

@ -344,7 +344,11 @@ static void pthreads_locking_callback(int mode, int type, const char *file, int
static void pthreads_thread_id(CRYPTO_THREADID *tid)
{
#ifdef WIN32
CRYPTO_THREADID_set_numeric(tid, (unsigned long)GetCurrentThreadId());
#else
CRYPTO_THREADID_set_numeric(tid, (unsigned long)pthread_self());
#endif
}
int sntl_init(void)

View File

@ -247,7 +247,7 @@ int main(int argc, char **argv)
(char *)sxmsg_payload(msg));
mr = sxmsg_return(msg, SNE_SUCCESS);
fprintf(stderr, "mr = %d\n", mr);
break;
brebak;
case SNE_SUCCESS:
fprintf(stdout, "Success.\n");
break;