blob: 580ab0cebc77663dd7c7c16b89f34a40e21a4ea8 (
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
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
145
146
147
148
149
150
151
152
153
|
Copyright (C) 2001-2010 Roberto Bagnara <bagnara@cs.unipr.it>
Copyright (C) 2010-2011 BUGSENG srl (http://bugseng.com)
See below for the copying conditions.
Parma Watchdog Library (Release 0.8)
====================================
This is the release 0.8 of the Parma Watchdog Library, a C++ library for
software timeouts and other devices able to throttle the complexity of
expensive algorithms.
To be continued...
See http://www.cs.unipr.it/ppl/ for more information on the PWL.
See the file COPYING for licensing information.
See the file INSTALL for build and installation instructions.
See the file NEWS for recent project news.
See the file BUGS for known bugs and how to report new ones.
See the file CREDITS for a list of people and organizations that
contributed to the PWL.
Here is the contents of the PWL 0.8 source distribution
(5 directories, 102 files):
pwl-0.8
|-- BUGS
|-- COPYING
|-- CREDITS
|-- ChangeLog
|-- ChangeLog_2001-2008
|-- INSTALL
|-- Makefile.am
|-- Makefile.in
|-- NEWS
|-- README
|-- aclocal.m4
|-- compile
|-- config.guess
|-- config.h.in
|-- config.rpath
|-- config.sub
|-- configure
|-- configure.ac
|-- depcomp
|-- doc
| |-- Makefile.am
| |-- Makefile.in
| |-- README.doc
| |-- devref.doxyconf-html.in
| |-- devref.doxyconf-latex.in
| |-- devref.tex
| |-- fdl.dox
| |-- fdl.pdf
| |-- fdl.ps.gz
| |-- fdl.tex
| |-- fdl.txt
| |-- gpl.dox
| |-- gpl.pdf
| |-- gpl.ps.gz
| |-- gpl.tex
| |-- gpl.txt
| |-- pwl-user-0.8-html.tar.gz
| |-- pwl-user-0.8.pdf
| |-- pwl-user-0.8.ps.gz
| |-- pwl.sty
| |-- user.doxyconf-html.in
| |-- user.doxyconf-latex.in
| `-- user.tex
|-- install-sh
|-- ltmain.sh
|-- m4
| |-- Makefile.am
| |-- Makefile.in
| |-- lib-ld.m4
| |-- lib-link.m4
| |-- libtool.m4
| |-- ltoptions.m4
| |-- ltsugar.m4
| |-- ltversion.m4
| `-- lt~obsolete.m4
|-- missing
|-- mkinstalldirs
|-- pwl-config.h.in
|-- pwl-config.sed
|-- src
| |-- Doubly_Linked_Object.defs.hh
| |-- Doubly_Linked_Object.inlines.hh
| |-- Doubly_Linked_Object.types.hh
| |-- EList.defs.hh
| |-- EList.inlines.hh
| |-- EList.types.hh
| |-- EList_Iterator.defs.hh
| |-- EList_Iterator.inlines.hh
| |-- EList_Iterator.types.hh
| |-- Handler.defs.hh
| |-- Handler.inlines.hh
| |-- Handler.types.hh
| |-- Makefile.am
| |-- Makefile.in
| |-- Pending_Element.defs.hh
| |-- Pending_Element.inlines.hh
| |-- Pending_Element.types.hh
| |-- Pending_List.defs.hh
| |-- Pending_List.inlines.hh
| |-- Pending_List.templates.hh
| |-- Pending_List.types.hh
| |-- Threshold_Watcher.cc
| |-- Threshold_Watcher.defs.hh
| |-- Threshold_Watcher.inlines.hh
| |-- Threshold_Watcher.templates.hh
| |-- Threshold_Watcher.types.hh
| |-- Time.cc
| |-- Time.defs.hh
| |-- Time.inlines.hh
| |-- Time.types.hh
| |-- Watchdog.cc
| |-- Watchdog.defs.hh
| |-- Watchdog.inlines.hh
| |-- Watchdog.types.hh
| |-- pwl.hh.dist
| `-- pwl_header.hh
|-- tests
| |-- Makefile.am
| |-- Makefile.in
| |-- pwl_test.cc
| |-- pwl_test.hh
| |-- valgrind_suppressions
| `-- watchdog1.cc
`-- utils
|-- Makefile.am
|-- Makefile.in
`-- build_header.in
--------
Copyright (C) 2001-2010 Roberto Bagnara <bagnara@cs.unipr.it>
Copyright (C) 2010-2011 BUGSENG srl (http://bugseng.com)
The Parma Watchdog Library is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 3 of the
License, or (at your option) any later version.
This program 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
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA.
|