summaryrefslogtreecommitdiffstats
path: root/crypto/threads
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-19 21:31:43 +0000
committerUlf Möller <ulf@openssl.org>1999-04-19 21:31:43 +0000
commit6b691a5c85ddc4e407e32781841fee5c029506cd (patch)
tree436f1127406e1cacfe83dfcbfff824d89c47d834 /crypto/threads
parent3edd7ed15de229230f74c79c3d71e7c9c674cf4f (diff)
Change functions to ANSI C.
Diffstat (limited to 'crypto/threads')
-rw-r--r--crypto/threads/mttest.c84
-rw-r--r--crypto/threads/th-lock.c47
2 files changed, 43 insertions, 88 deletions
diff --git a/crypto/threads/mttest.c b/crypto/threads/mttest.c
index be395f2bc4..97f705dbc5 100644
--- a/crypto/threads/mttest.c
+++ b/crypto/threads/mttest.c
@@ -145,9 +145,7 @@ int doit(char *ctx[4]);
int doit();
#endif
-static void print_stats(fp,ctx)
-FILE *fp;
-SSL_CTX *ctx;
+static void print_stats(FILE *fp, SSL_CTX *ctx)
{
fprintf(fp,"%4ld items in the session cache\n",
SSL_CTX_sess_number(ctx));
@@ -164,7 +162,7 @@ SSL_CTX *ctx;
fprintf(fp,"%4d session cache timeouts\n",SSL_CTX_sess_timeouts(ctx));
}
-static void sv_usage()
+static void sv_usage(void)
{
fprintf(stderr,"usage: ssltest [args ...]\n");
fprintf(stderr,"\n");
@@ -182,9 +180,7 @@ static void sv_usage()
fprintf(stderr," -ssl3 - just SSLv3n\n");
}
-int main(argc, argv)
-int argc;
-char *argv[];
+int main(int argc, char *argv[])
{
char *CApath=NULL,*CAfile=NULL;
int badop=0;
@@ -358,8 +354,7 @@ end:
#define C_DONE 1
#define S_DONE 2
-int ndoit(ssl_ctx)
-SSL_CTX *ssl_ctx[2];
+int ndoit(SSL_CTX *ssl_ctx[2])
{
int i;
int ret;
@@ -405,8 +400,7 @@ SSL_CTX *ssl_ctx[2];
return(0);
}
-int doit(ctx)
-char *ctx[4];
+int doit(char *ctx[4])
{
SSL_CTX *s_ctx,*c_ctx;
static char cbuf[200],sbuf[200];
@@ -681,13 +675,8 @@ err:
return(0);
}
-int MS_CALLBACK verify_callback(ok, xs, xi, depth, error, arg)
-int ok;
-X509 *xs;
-X509 *xi;
-int depth;
-int error;
-char *arg;
+int MS_CALLBACK verify_callback(int ok, X509 *xs, X509 *xi, int depth,
+ int error, char *arg)
{
char buf[256];
@@ -708,7 +697,7 @@ char *arg;
static HANDLE lock_cs[CRYPTO_NUM_LOCKS];
-void thread_setup()
+void thread_setup(void)
{
int i;
@@ -721,7 +710,7 @@ void thread_setup()
/* id callback defined */
}
-void thread_cleanup()
+void thread_cleanup(void)
{
int i;
@@ -730,11 +719,7 @@ void thread_cleanup()
CloseHandle(lock_cs[i]);
}
-void win32_locking_callback(mode,type,file,line)
-int mode;
-int type;
-char *file;
-int line;
+void win32_locking_callback(int mode, int type, char *file, int line)
{
if (mode & CRYPTO_LOCK)
{
@@ -746,8 +731,7 @@ int line;
}
}
-void do_threads(s_ctx,c_ctx)
-SSL_CTX *s_ctx,*c_ctx;
+void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
{
double ret;
SSL_CTX *ssl_ctx[2];
@@ -806,7 +790,7 @@ static mutex_t lock_cs[CRYPTO_NUM_LOCKS];
/*static rwlock_t lock_cs[CRYPTO_NUM_LOCKS]; */
static long lock_count[CRYPTO_NUM_LOCKS];
-void thread_setup()
+void thread_setup(void)
{
int i;
@@ -821,7 +805,7 @@ void thread_setup()
CRYPTO_set_locking_callback((void (*)())solaris_locking_callback);
}
-void thread_cleanup()
+void thread_cleanup(void)
{
int i;
@@ -836,11 +820,7 @@ fprintf(stderr,"cleanup\n");
fprintf(stderr,"done cleanup\n");
}
-void solaris_locking_callback(mode,type,file,line)
-int mode;
-int type;
-char *file;
-int line;
+void solaris_locking_callback(int mode, int type, char *file, int line)
{
#ifdef undef
fprintf(stderr,"thread=%4d mode=%s lock=%s %s:%d\n",
@@ -872,8 +852,7 @@ if (CRYPTO_LOCK_SSL_CERT == type)
}
}
-void do_threads(s_ctx,c_ctx)
-SSL_CTX *s_ctx,*c_ctx;
+void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
{
SSL_CTX *ssl_ctx[2];
thread_t thread_ctx[MAX_THREAD_NUMBER];
@@ -902,7 +881,7 @@ SSL_CTX *s_ctx,*c_ctx;
s_ctx->references,c_ctx->references);
}
-unsigned long solaris_thread_id()
+unsigned long solaris_thread_id(void)
{
unsigned long ret;
@@ -917,7 +896,7 @@ unsigned long solaris_thread_id()
static usptr_t *arena;
static usema_t *lock_cs[CRYPTO_NUM_LOCKS];
-void thread_setup()
+void thread_setup(void)
{
int i;
char filename[20];
@@ -941,7 +920,7 @@ void thread_setup()
CRYPTO_set_locking_callback((void (*)())irix_locking_callback);
}
-void thread_cleanup()
+void thread_cleanup(void)
{
int i;
@@ -956,11 +935,7 @@ void thread_cleanup()
}
}
-void irix_locking_callback(mode,type,file,line)
-int mode;
-int type;
-char *file;
-int line;
+void irix_locking_callback(int mode, int type, char *file, int line)
{
if (mode & CRYPTO_LOCK)
{
@@ -974,8 +949,7 @@ int line;
}
}
-void do_threads(s_ctx,c_ctx)
-SSL_CTX *s_ctx,*c_ctx;
+void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
{
SSL_CTX *ssl_ctx[2];
int thread_ctx[MAX_THREAD_NUMBER];
@@ -1000,7 +974,7 @@ SSL_CTX *s_ctx,*c_ctx;
s_ctx->references,c_ctx->references);
}
-unsigned long irix_thread_id()
+unsigned long irix_thread_id(void)
{
unsigned long ret;
@@ -1014,7 +988,7 @@ unsigned long irix_thread_id()
static pthread_mutex_t lock_cs[CRYPTO_NUM_LOCKS];
static long lock_count[CRYPTO_NUM_LOCKS];
-void thread_setup()
+void thread_setup(void)
{
int i;
@@ -1028,7 +1002,7 @@ void thread_setup()
CRYPTO_set_locking_callback((void (*)())pthreads_locking_callback);
}
-void thread_cleanup()
+void thread_cleanup(void)
{
int i;
@@ -1043,11 +1017,8 @@ void thread_cleanup()
fprintf(stderr,"done cleanup\n");
}
-void pthreads_locking_callback(mode,type,file,line)
-int mode;
-int type;
-char *file;
-int line;
+void pthreads_locking_callback(int mode, int type, char *file,
+ int line)
{
#ifdef undef
fprintf(stderr,"thread=%4d mode=%s lock=%s %s:%d\n",
@@ -1072,8 +1043,7 @@ int line;
}
}
-void do_threads(s_ctx,c_ctx)
-SSL_CTX *s_ctx,*c_ctx;
+void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
{
SSL_CTX *ssl_ctx[2];
pthread_t thread_ctx[MAX_THREAD_NUMBER];
@@ -1101,7 +1071,7 @@ SSL_CTX *s_ctx,*c_ctx;
s_ctx->references,c_ctx->references);
}
-unsigned long pthreads_thread_id()
+unsigned long pthreads_thread_id(void)
{
unsigned long ret;
diff --git a/crypto/threads/th-lock.c b/crypto/threads/th-lock.c
index 039022446d..21293f20f0 100644
--- a/crypto/threads/th-lock.c
+++ b/crypto/threads/th-lock.c
@@ -122,7 +122,7 @@ static unsigned long pthreads_thread_id();
static HANDLE lock_cs[CRYPTO_NUM_LOCKS];
-int CRYPTO_thread_setup()
+int CRYPTO_thread_setup(void)
{
int i;
@@ -136,7 +136,7 @@ int CRYPTO_thread_setup()
return(1);
}
-static void CRYPTO_thread_cleanup()
+static void CRYPTO_thread_cleanup(void)
{
int i;
@@ -145,11 +145,7 @@ static void CRYPTO_thread_cleanup()
CloseHandle(lock_cs[i]);
}
-void win32_locking_callback(mode,type,file,line)
-int mode;
-int type;
-char *file;
-int line;
+void win32_locking_callback(int mode, int type, char *file, int line)
{
if (mode & CRYPTO_LOCK)
{
@@ -174,7 +170,7 @@ static long lock_count[CRYPTO_NUM_LOCKS];
static rwlock_t lock_cs[CRYPTO_NUM_LOCKS];
#endif
-void CRYPTO_thread_setup()
+void CRYPTO_thread_setup(void)
{
int i;
@@ -192,7 +188,7 @@ void CRYPTO_thread_setup()
CRYPTO_set_locking_callback((void (*)())solaris_locking_callback);
}
-void CRYPTO_thread_cleanup()
+void CRYPTO_thread_cleanup(void)
{
int i;
@@ -207,11 +203,7 @@ void CRYPTO_thread_cleanup()
}
}
-void solaris_locking_callback(mode,type,file,line)
-int mode;
-int type;
-char *file;
-int line;
+void solaris_locking_callback(int mode, int type, char *file, int line)
{
#if 0
fprintf(stderr,"thread=%4d mode=%s lock=%s %s:%d\n",
@@ -248,7 +240,7 @@ int line;
}
}
-unsigned long solaris_thread_id()
+unsigned long solaris_thread_id(void)
{
unsigned long ret;
@@ -263,7 +255,7 @@ unsigned long solaris_thread_id()
static usptr_t *arena;
static usema_t *lock_cs[CRYPTO_NUM_LOCKS];
-void CRYPTO_thread_setup()
+void CRYPTO_thread_setup(void)
{
int i;
char filename[20];
@@ -287,7 +279,7 @@ void CRYPTO_thread_setup()
CRYPTO_set_locking_callback((void (*)())irix_locking_callback);
}
-void CRYPTO_thread_cleanup()
+void CRYPTO_thread_cleanup(void)
{
int i;
@@ -302,11 +294,7 @@ void CRYPTO_thread_cleanup()
}
}
-void irix_locking_callback(mode,type,file,line)
-int mode;
-int type;
-char *file;
-int line;
+void irix_locking_callback(int mode, int type, char *file, int line)
{
if (mode & CRYPTO_LOCK)
{
@@ -318,7 +306,7 @@ int line;
}
}
-unsigned long irix_thread_id()
+unsigned long irix_thread_id(void)
{
unsigned long ret;
@@ -333,7 +321,7 @@ unsigned long irix_thread_id()
static pthread_mutex_t lock_cs[CRYPTO_NUM_LOCKS];
static long lock_count[CRYPTO_NUM_LOCKS];
-void CRYPTO_thread_setup()
+void CRYPTO_thread_setup(void)
{
int i;
@@ -347,7 +335,7 @@ void CRYPTO_thread_setup()
CRYPTO_set_locking_callback((void (*)())pthreads_locking_callback);
}
-void thread_cleanup()
+void thread_cleanup(void)
{
int i;
@@ -358,11 +346,8 @@ void thread_cleanup()
}
}
-void pthreads_locking_callback(mode,type,file,line)
-int mode;
-int type;
-char *file;
-int line;
+void pthreads_locking_callback(int mode, int type, char *file,
+ int line)
{
#if 0
fprintf(stderr,"thread=%4d mode=%s lock=%s %s:%d\n",
@@ -387,7 +372,7 @@ int line;
}
}
-unsigned long pthreads_thread_id()
+unsigned long pthreads_thread_id(void)
{
unsigned long ret;