Move crypto/threads to demo/threads

Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Rich Salz
2015-10-26 16:00:23 -04:00
committed by Rich Salz
parent d2c3d5d4fc
commit 0e56b4b424
6 changed files with 987 additions and 0 deletions

6
demos/threads/pthread.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
#
# build using pthreads where it's already built into the system
#
/bin/rm -f mttest
gcc -DPTHREADS -I../../include -g mttest.c -o mttest -L../.. -lssl -lcrypto -lpthread -ldl