blob: d6fb34d4c397de7964a8526d40b22ec80451f11b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/* $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
*
* Description : Test context switch functionality.
*
* 1.00 93/08/04 proven
* -Started coding this file.
*/
#include <pthread.h>
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include "test.h"
const char buf[] = "abcdefghijklmnopqrstuvwxyz";
char x[sizeof(buf)];
int fd = 1;
/* ==========================================================================
* usage();
*/
void usage(void)
{
printf("test_switch [-d?] [-c count]\n");
printf("count must be between 2 and 26\n");
errno = 0;
}
void *
new_thread(arg)
void *arg;
{
SET_NAME("writer");
while(1) {
CHECKe(write (fd, (char *) arg, 1));
x[(char *)arg - buf] = 1;
}
PANIC("while");
}
int
main(argc, argv)
int argc;
char **argv;
{
pthread_t thread;
int count = 4;
int debug = 0;
int eof = 0;
long i;
/* Getopt variables. */
extern int optind, opterr;
extern char *optarg;
while (!eof)
switch (getopt (argc, argv, "c:d?"))
{
case EOF:
eof = 1;
break;
case 'd':
debug++;
break;
case 'c':
count = atoi(optarg);
if ((count > 26) || (count < 2)) {
count = 2;
}
break;
case '?':
usage();
return(OK);
default:
usage();
return(NOTOK);
}
/* create the threads */
for (i = 0; i < count; i++)
CHECKr(pthread_create(&thread, NULL, new_thread,
(void*)(buf+i)));
/* give all threads a chance to run */
sleep (4);
for (i = 0; i < count; i++)
ASSERT(x[i]); /* make sure each thread ran */
SUCCEED;
}
|