-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_misc.c
145 lines (129 loc) · 4.88 KB
/
test_misc.c
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
** GNU Pth - The GNU Portable Threads
** Copyright (c) 1999-2006 Ralf S. Engelschall <rse@engelschall.com>
**
** This file is part of GNU Pth, a non-preemptive thread scheduling
** library which can be found at http://www.gnu.org/software/pth/.
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License as published by the Free Software Foundation; either
** version 2.1 of the License, or (at your option) any later version.
**
** This library is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
** Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public
** License along with this library; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
** USA, or contact Ralf S. Engelschall <rse@engelschall.com>.
**
** test_misc.c: Pth test program (misc functions)
*/
/* ``Study it forever and you'll still wonder.
Fly it once and you'll know.''
-- Henry Spencer */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "pth.h"
pth_mutex_t mutex = PTH_MUTEX_INIT;
static void *my_reader(void *_arg)
{
char buf[3];
int n;
for (;;) {
n = pth_read(STDIN_FILENO, buf, 1);
if (n < 0) {
fprintf(stderr, "reader: error\n");
break;
}
if (n == 0) {
fprintf(stderr, "reader: EOF\n");
break;
}
if (n == 1 && buf[0] == '\n') {
buf[0] = '\\';
buf[1] = 'n';
n = 2;
}
buf[n] = NUL;
fprintf(stderr, "reader: bytes=%d, char='%s'\n", n, buf);
if (buf[0] == 'Q' || buf[0] == 'q')
break;
if (buf[0] == 'L' || buf[0] == 'l') {
fprintf(stderr, "reader: ACQUIRE MUTEX\n");
pth_mutex_acquire(&mutex, FALSE, NULL);
}
if (buf[0] == 'U' || buf[0] == 'u') {
fprintf(stderr, "reader: RELEASE MUTEX\n");
pth_mutex_release(&mutex);
}
fflush(stderr);
}
return NULL;
}
static void *my_child(void *_arg)
{
int i;
char *name = (char *)_arg;
for (i = 0; i < 10; ++i) {
pth_mutex_acquire(&mutex, FALSE, NULL);
fprintf(stderr, "%s: %d\n", name, i);
pth_mutex_release(&mutex);
pth_usleep(500000);
}
return NULL;
}
int main(int argc, char *argv[])
{
pth_t child[10];
pth_attr_t t_attr;
pth_attr_t t_attr2;
long n;
pth_init();
fprintf(stderr, "This is TEST_MISC, a Pth test using various stuff.\n");
fprintf(stderr, "\n");
fprintf(stderr, "A stdin reader child and various looping childs are\n");
fprintf(stderr, "spawned. When you enter 'l' you can lock a mutex which\n");
fprintf(stderr, "blocks the looping childs. 'u' unlocks this mutex.\n");
fprintf(stderr, "Enter 'q' to quit.\n");
fprintf(stderr, "\n");
fprintf(stderr, "Main Startup (%ld total threads running)\n", pth_ctrl(PTH_CTRL_GETTHREADS));
t_attr = pth_attr_new();
pth_attr_set(t_attr, PTH_ATTR_JOINABLE, FALSE);
pth_attr_set(t_attr, PTH_ATTR_NAME, "foo");
child[0] = pth_spawn(t_attr, my_child, (void *)"foo");
pth_attr_set(t_attr, PTH_ATTR_NAME, "bar");
child[1] = pth_spawn(t_attr, my_child, (void *)"bar");
pth_attr_set(t_attr, PTH_ATTR_NAME, "baz");
child[2] = pth_spawn(t_attr, my_child, (void *)"baz");
pth_attr_set(t_attr, PTH_ATTR_NAME, "quux");
child[3] = pth_spawn(t_attr, my_child, (void *)"quux");
pth_attr_set(t_attr, PTH_ATTR_NAME, "killer");
pth_attr_set(t_attr, PTH_ATTR_PRIO, 4);
child[4] = pth_spawn(t_attr, my_child, (void *)"killer");
pth_attr_set(t_attr, PTH_ATTR_NAME, "killer II");
pth_attr_set(t_attr, PTH_ATTR_PRIO, 5);
child[5] = pth_spawn(t_attr, my_child, (void *)"killer II");
pth_attr_set(t_attr, PTH_ATTR_NAME, "reader");
pth_attr_set(t_attr, PTH_ATTR_PRIO, PTH_PRIO_STD);
child[6] = pth_spawn(t_attr, my_reader, (void *)"reader");
pth_attr_destroy(t_attr);
t_attr2 = pth_attr_of(child[0]);
pth_attr_set(t_attr2, PTH_ATTR_PRIO, -1);
pth_attr_destroy(t_attr2);
t_attr2 = pth_attr_of(child[3]);
pth_attr_set(t_attr2, PTH_ATTR_PRIO, +1);
pth_attr_destroy(t_attr2);
fprintf(stderr, "Main Loop (%ld total threads running)\n", pth_ctrl(PTH_CTRL_GETTHREADS));
while ((n = pth_ctrl(PTH_CTRL_GETTHREADS)) > 1) {
fprintf(stderr, "Main Loop (%ld total threads still running)\n", n);
pth_usleep(500000);
}
fprintf(stderr, "Main Exit (%ld total threads running)\n", pth_ctrl(PTH_CTRL_GETTHREADS));
pth_kill();
return 0;
}