summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Leonard <d@cvs.openbsd.org>2000-01-06 06:58:36 +0000
committerDavid Leonard <d@cvs.openbsd.org>2000-01-06 06:58:36 +0000
commitaa3d945509e53db64b5c0578200ae4f512f742c6 (patch)
treee8914c9b479fb89f75330aa304cbc959215c2cf0 /lib
parentd3c76003c02c6de538fe707b8996fbc81e3b71b2 (diff)
ident, clean
Diffstat (limited to 'lib')
-rw-r--r--lib/libc_r/TEST/test_preemption.c4
-rw-r--r--lib/libc_r/TEST/test_preemption_float.c1
-rw-r--r--lib/libc_r/TEST/test_pthread_cond_timedwait.c1
-rw-r--r--lib/libc_r/TEST/test_pthread_join.c1
-rw-r--r--lib/libc_r/TEST/test_pthread_mutex.c3
-rw-r--r--lib/libc_r/TEST/test_pw.c1
-rw-r--r--lib/libc_r/TEST/test_readdir.c1
-rw-r--r--lib/libc_r/TEST/test_setjmp.c1
-rw-r--r--lib/libc_r/TEST/test_sigsuspend.c1
-rw-r--r--lib/libc_r/TEST/test_sigwait.c1
-rw-r--r--lib/libc_r/TEST/test_sleep.c3
-rw-r--r--lib/libc_r/TEST/test_sock_1.c1
-rw-r--r--lib/libc_r/TEST/test_sock_2.c1
-rw-r--r--lib/libc_r/TEST/test_sock_2a.c1
-rw-r--r--lib/libc_r/TEST/test_stdio_1.c1
-rw-r--r--lib/libc_r/TEST/test_switch.c1
16 files changed, 20 insertions, 3 deletions
diff --git a/lib/libc_r/TEST/test_preemption.c b/lib/libc_r/TEST/test_preemption.c
index 54ca1b9117e..4cff187d6f9 100644
--- a/lib/libc_r/TEST/test_preemption.c
+++ b/lib/libc_r/TEST/test_preemption.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_preemption.c,v 1.4 2000/01/06 06:58:34 d Exp $ */
/* ==== test_pthread_cond.c =========================================
* Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
*
@@ -11,7 +12,8 @@
#include <stdio.h>
#include "test.h"
-void* new_thread(void * new_buf)
+void *
+new_thread(void * new_buf)
{
int i;
diff --git a/lib/libc_r/TEST/test_preemption_float.c b/lib/libc_r/TEST/test_preemption_float.c
index 48246f577ed..ba22ba0cc65 100644
--- a/lib/libc_r/TEST/test_preemption_float.c
+++ b/lib/libc_r/TEST/test_preemption_float.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_preemption_float.c,v 1.3 2000/01/06 06:58:34 d Exp $ */
/* Test to see if floating point state is being properly maintained
for each thread. Different threads doing floating point operations
simultaneously should not interfere with one another. This
diff --git a/lib/libc_r/TEST/test_pthread_cond_timedwait.c b/lib/libc_r/TEST/test_pthread_cond_timedwait.c
index 95cf2a8d466..c3a98bc3d11 100644
--- a/lib/libc_r/TEST/test_pthread_cond_timedwait.c
+++ b/lib/libc_r/TEST/test_pthread_cond_timedwait.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_pthread_cond_timedwait.c,v 1.3 2000/01/06 06:58:34 d Exp $ */
/* ==== test_pthread_cond.c =========================================
* Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
*
diff --git a/lib/libc_r/TEST/test_pthread_join.c b/lib/libc_r/TEST/test_pthread_join.c
index a4331e0d8db..b42252953bc 100644
--- a/lib/libc_r/TEST/test_pthread_join.c
+++ b/lib/libc_r/TEST/test_pthread_join.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_pthread_join.c,v 1.4 2000/01/06 06:58:34 d Exp $ */
/* ==== test_pthread_join.c =================================================
* Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
*
diff --git a/lib/libc_r/TEST/test_pthread_mutex.c b/lib/libc_r/TEST/test_pthread_mutex.c
index 1e9257b3dd1..97f9d3f6d9a 100644
--- a/lib/libc_r/TEST/test_pthread_mutex.c
+++ b/lib/libc_r/TEST/test_pthread_mutex.c
@@ -1,7 +1,8 @@
+/* $OpenBSD: test_pthread_mutex.c,v 1.6 2000/01/06 06:58:34 d Exp $ */
/* ==== test_pthread_cond.c =========================================
* Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
*
- * Description : Test pthread_cond(). Run this after test_create()
+ * Description : Test pthread_mutex(). Run this after test_create()
*
* 1.23 94/05/04 proven
* -Started coding this file.
diff --git a/lib/libc_r/TEST/test_pw.c b/lib/libc_r/TEST/test_pw.c
index c177fdf90c5..1bf41d7723c 100644
--- a/lib/libc_r/TEST/test_pw.c
+++ b/lib/libc_r/TEST/test_pw.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_pw.c,v 1.4 2000/01/06 06:58:34 d Exp $ */
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
diff --git a/lib/libc_r/TEST/test_readdir.c b/lib/libc_r/TEST/test_readdir.c
index fd098e0e89a..e95c14a35bf 100644
--- a/lib/libc_r/TEST/test_readdir.c
+++ b/lib/libc_r/TEST/test_readdir.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_readdir.c,v 1.4 2000/01/06 06:58:34 d Exp $ */
/* ==== test_readdir.c ========================================================
* Copyright (c) 1993, 1994 by Chris Provenzano, proven@athena.mit.edu
*
diff --git a/lib/libc_r/TEST/test_setjmp.c b/lib/libc_r/TEST/test_setjmp.c
index 3a2b7bcdf22..dab429cc7ad 100644
--- a/lib/libc_r/TEST/test_setjmp.c
+++ b/lib/libc_r/TEST/test_setjmp.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_setjmp.c,v 1.5 2000/01/06 06:58:34 d Exp $ */
#include <setjmp.h>
#include "test.h"
diff --git a/lib/libc_r/TEST/test_sigsuspend.c b/lib/libc_r/TEST/test_sigsuspend.c
index a4978df7997..4dd93cd0992 100644
--- a/lib/libc_r/TEST/test_sigsuspend.c
+++ b/lib/libc_r/TEST/test_sigsuspend.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_sigsuspend.c,v 1.3 2000/01/06 06:58:34 d Exp $ */
/*
* Copyright (c) 1998 Daniel M. Eischen <eischen@vigrid.com>
* All rights reserved.
diff --git a/lib/libc_r/TEST/test_sigwait.c b/lib/libc_r/TEST/test_sigwait.c
index a13235414a8..b2184b5ea30 100644
--- a/lib/libc_r/TEST/test_sigwait.c
+++ b/lib/libc_r/TEST/test_sigwait.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_sigwait.c,v 1.3 2000/01/06 06:58:34 d Exp $ */
/*
* Copyright (c) 1998 Daniel M. Eischen <eischen@vigrid.com>
* All rights reserved.
diff --git a/lib/libc_r/TEST/test_sleep.c b/lib/libc_r/TEST/test_sleep.c
index 784a203f741..1b5e75bc2ad 100644
--- a/lib/libc_r/TEST/test_sleep.c
+++ b/lib/libc_r/TEST/test_sleep.c
@@ -1,4 +1,5 @@
-/* ==== test_switch.c ============================================================
+/* $OpenBSD: test_sleep.c,v 1.4 2000/01/06 06:58:34 d Exp $ */
+/* ==== test_sleep.c ============================================================
* Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
*
* Description : Test context switch functionality.
diff --git a/lib/libc_r/TEST/test_sock_1.c b/lib/libc_r/TEST/test_sock_1.c
index 77f5182db74..991dbd1cb27 100644
--- a/lib/libc_r/TEST/test_sock_1.c
+++ b/lib/libc_r/TEST/test_sock_1.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_sock_1.c,v 1.4 2000/01/06 06:58:34 d Exp $ */
/* ==== test_sock_1.c =========================================================
* Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
*
diff --git a/lib/libc_r/TEST/test_sock_2.c b/lib/libc_r/TEST/test_sock_2.c
index 7f4bdf8c736..88b3636236b 100644
--- a/lib/libc_r/TEST/test_sock_2.c
+++ b/lib/libc_r/TEST/test_sock_2.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_sock_2.c,v 1.5 2000/01/06 06:58:34 d Exp $ */
/* ==== test_sock_1.c =========================================================
* Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
*
diff --git a/lib/libc_r/TEST/test_sock_2a.c b/lib/libc_r/TEST/test_sock_2a.c
index 833100492a7..9e7cee35c1d 100644
--- a/lib/libc_r/TEST/test_sock_2a.c
+++ b/lib/libc_r/TEST/test_sock_2a.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_sock_2a.c,v 1.4 2000/01/06 06:58:34 d Exp $ */
/* ==== test_sock_1.c =========================================================
* Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
*
diff --git a/lib/libc_r/TEST/test_stdio_1.c b/lib/libc_r/TEST/test_stdio_1.c
index fe146b25b45..c08ca1e32f7 100644
--- a/lib/libc_r/TEST/test_stdio_1.c
+++ b/lib/libc_r/TEST/test_stdio_1.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_stdio_1.c,v 1.3 2000/01/06 06:58:34 d Exp $ */
#include <pthread.h>
#include <sys/types.h>
#include <sys/stat.h>
diff --git a/lib/libc_r/TEST/test_switch.c b/lib/libc_r/TEST/test_switch.c
index 40e04ebfd50..d6fb34d4c39 100644
--- a/lib/libc_r/TEST/test_switch.c
+++ b/lib/libc_r/TEST/test_switch.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: test_switch.c,v 1.6 2000/01/06 06:58:35 d Exp $ */
/* ==== test_switch.c ========================================================
* Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
*