sys-proctable 0.8.0-sparc-solaris-2.10

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES ADDED
@@ -0,0 +1,260 @@
1
+ == 0.8.0 - 26-Jan-2009
2
+ * The Linux and Solaris versions of this library are now pure Ruby. Be warned,
3
+ however, that only Solaris 8 and later are now supported. This may change
4
+ in a future release if there's demand to support 2.6 and 2.7.
5
+ * Some Struct::ProcTableStruct members have changed. As a general rule they
6
+ now more closely match the C struct member name. See individual platforms
7
+ for more details.
8
+ * Bug fix for the cmd_args struct member on Solaris.
9
+ * Bug fixes for OS X. Added a VERSION constant, fixed struct name, and changed
10
+ pct_cpu to pctcpu.
11
+ * The .new method is now explicitly illegal.
12
+ * The Struct::ProcTableStruct instances are now frozen. This is read-only data.
13
+ * Added the peak_page_file_usage and status members on MS Windows. The status
14
+ member is always nil, but was added for completeness.
15
+ * Fixed the quota_peak_paged_pool_usage member on MS Windows.
16
+ * ProcTableError is now ProcTable::Error.
17
+ * Minor test case fix for kvm/bsd based versions.
18
+ * Added the 'time' library as a require for Windows (to parse MS date/time
19
+ format strings).
20
+ * The kvm (bsd.c) implementation now works for FreeBSD 7.
21
+ * Added many more tests.
22
+ * Added some benchmarking code in the 'benchmarks' directory.
23
+ * Added a 'bench' Rake task.
24
+ * Renamed the test_ps.rb file to example_ps.rb in order to avoid any possible
25
+ confusion with actual test files.
26
+ * Added an 'example' rake task to run the example file.
27
+
28
+ == 0.7.6 - 11-Jul-2007
29
+ * Fixed the starttime for Linux. Thanks go to Yaroslav Dmitriev for the spot.
30
+ * Fixed a bug in the MS Windows version within a private method that parsed
31
+ an MS specific date format. This was caused by a backwards incompatible
32
+ change in the Time.parse method in Ruby 1.8.6. See ruby-core: 11245 ff.
33
+ * Fixed the gemspec (I hope). Please let me know if you have problems.
34
+ * Added a Rakefile. Building, testing and installing should now be handled via
35
+ Rake tasks. The install.rb file has been removed - that code is now
36
+ integrated in the Rakefile.
37
+ * Minor directory layout changes and cleanup (mostly for the extconf.rb file).
38
+ * Side note - it seems that the code for OS X *does* work, at least on 10.4.10.
39
+ I can only conclude that previous reports about it failing were related to
40
+ bugs in OS X or were really just build issues. Apologies (and thanks, again)
41
+ to David Felstead for the code. However, see the README for more information
42
+ specific to OS X, as there are shortcomings.
43
+
44
+ == 0.7.5 - 23-Nov-2006
45
+ * Fixed int/long issues for Linux. Thanks go to Matt Lightner for the spot.
46
+ * Minor documentation fixes and changes to the extconf.rb file.
47
+
48
+ == 0.7.4 - 20-Nov-2006
49
+ * Added a patch that deals with the large file compilation issue on Solaris.
50
+ You no longer need to build Ruby with --disable-largefile, or build a
51
+ 64 bit Ruby, in order for this package to work. Thanks go to Steven Jenkins
52
+ for the information that led to the patch.
53
+ * Added inline rdoc to the source code.
54
+ * Added a gemspec.
55
+ * Fixed some potential 64 bit issues (struct declarations).
56
+ * Added preliminary support for Darwin (OS X). The code was provided by
57
+ David Felstead, but does not appear to compile successfully. Help wanted.
58
+
59
+ == 0.7.3 - 27-Oct-2005
60
+ * Fix for 1.8.3 and later (rb_pid_t). This should have only affected
61
+ Solaris.
62
+
63
+ == 0.7.2 - 15-May-2005
64
+ * Bug fix for the FreeBSD version that reads from /proc.
65
+ * Eliminated the test bug on Linux (inexplicably caused by File.copy). The
66
+ test suite should now run without segfaulting.
67
+ * Include bsd.c in tarball (oops).
68
+ * Minor test updates for FreeBSD.
69
+ * The 'pct_cpu' member for the BSD/kvm version has been changed to 'pctcpu'
70
+ for consistency with other platforms.
71
+
72
+ == 0.7.1 - 8-May-2005
73
+ * Bug fixed for the cmdline info on Linux. Thanks go to Arash Abedinzadeh
74
+ for the spot.
75
+ * Added an example program.
76
+ * Minor setup fix for Win32 in tc_all.rb.
77
+
78
+ == 0.7.0 - 25-Apr-2005
79
+ * Scrapped the C implementation for Windows in favor of an OLE + WMI pure Ruby
80
+ approach. See documentation for details.
81
+ * Added an optional lkvm implementation for BSD users. This is automatically
82
+ used if the /proc filesystem isn't found.
83
+ * Added prusage info for the Solaris version.
84
+ * Added name, eid, euid, gid and guid information for Linux. Thanks go to
85
+ James Hranicky for the patch.
86
+ * Fixed some potential bugs in the Linux version. Thanks go to James
87
+ Hranicky for the spot.
88
+ * Added the 'sys/top' package.
89
+ * ProcTable.fields no longer supports a block form.
90
+ * The BTIME (boot time) information has been removed from the Linux version.
91
+ If you want that information, use sys-uptime instead.
92
+ * The .html and .rd files have been removed. You can generate html on your
93
+ own with rdoc if you like.
94
+ * Some code cleanup on the C side of the house.
95
+ * Most documents made rdoc friendly.
96
+ * Renamed 'install_pure_ruby.rb' to just 'install.rb'.
97
+ * Removed the 'INSTALL' file. Installation instructions are in the README.
98
+ * Some test suite cleanup and reorganization.
99
+ * Moved project to RubyForge.
100
+
101
+ == 0.6.4 - 31-Mar-2004
102
+ * Fixed a bug in the pure Ruby version for Win32. Thanks go to Mark Hudson
103
+ for the spot.
104
+ * Fixed a bug in the C implementation for Win32 where the cmdline and path
105
+ values were sometimes wrong for running processes. Thanks go to Park Heesob
106
+ for the fix.
107
+ * Updated the VERSION constant and removed the VERSION class method in the
108
+ pure Ruby version for Win32.
109
+ * Updated install_pure_ruby.rb and test.rb scripts.
110
+ * Updated warranty information.
111
+ * The extconf.rb script has been revamped. See the INSTALL and README files
112
+ for important changes since the last release.
113
+ * The start ProcInfo struct member on Solaris, HP-UX and FreeBSD is now a
114
+ Time object, not a Fixnum/Bignum.
115
+ * Modified linux.c yet again to make gcc happy when it comes to multi-line
116
+ string literals.
117
+ * Minor change to way process state is handled on HP-UX.
118
+ * Documentation additions and updates, including warranty information.
119
+
120
+ == 0.6.3 - 24-Feb-2004
121
+ * Fixed a bug in the Solaris version where the cmd_args array did not
122
+ necessarily contain data on 2.7 and later. The current patch still
123
+ does not quite fix the problem for 2.6 and earlier but can be easily
124
+ derived manually by parsing the cmdline string.
125
+
126
+ == 0.6.2 - 20-Jan-2004
127
+ * Fixed a small memory leak in the solaris version.
128
+
129
+ == 0.6.1 - 31-Dec-2003
130
+ * Fixed a minor bug in the cmdline field on Linux where a blank character
131
+ was being appended to the end of the field.
132
+ * Fixed a minor annoyance where the windows.rb file was being copied into
133
+ the Ruby lib directory on install.
134
+ * Added a test_memleak.rb file. Currently only supported on Linux and
135
+ only does a file descriptor count check. I plan to expand this to
136
+ other platforms in the future.
137
+ * Minor test suite changes
138
+ * MANIFEST correction and update.
139
+
140
+ == 0.6.0 - 22-Oct-2003
141
+ * Significant API change (and thus, a version jump) - only a
142
+ single argument is now accepted to the ps() method, and only a PID
143
+ (Fixnum) is regarded as a valid argument.
144
+ * Calling ps() with a pid returns a single ProcTable struct (or nil
145
+ if the pid is not found), instead of a one element array.
146
+ * Argument to ps() now works properly on HP-UX and Win32.
147
+ * Removed the '#include <sys/types32.h>' in sunos.h. It wasn't needed
148
+ and you're not supposed to include it directly.
149
+ * Fixed 2.6 compatibility issue with regards to cmdline on Solaris.
150
+ * Removed the ProcStatException completely on Linux. There was no reason
151
+ to fail on a directory read for /proc/xxx/stat. If the read fails
152
+ (meaning the process died in the middle of collecting info for it), it
153
+ is simply ignored.
154
+ * The ttynum bug on HPUX has been fixed. In addition, the return value for
155
+ this field is now a string rather than an int and the field name has
156
+ been changed to "ttydev".
157
+ * The ttynum field has been changed to ttydev on Solaris and HPUX. On
158
+ Solaris, the ttydev is now reported as -1 if there is no associated tty.
159
+ In a future release, Solaris and the other *nix platforms will be changed
160
+ so that ttydev is always a device name (i.e String).
161
+ * Added plain text documentation for all platforms.
162
+ * Some test suite cleanup.
163
+ * Changed .rd2 extension to just '.rd'.
164
+
165
+ == 0.5.2 - 18-Jul-2003
166
+ * Modified cmdline to extend past the traditional 80 character limit on
167
+ Solaris, where possible (Solaris 2.6+ only).
168
+ * Added the cmdline_args and num_args fields on Solaris, which returns
169
+ an array of cmdline arguments and the number of cmdline arguments,
170
+ respectively.
171
+ * Minor modification to fields() method, in addition to warning cleanup
172
+ for Solaris.
173
+ * Changed "defunct" state string to "zombie" for Solaris.
174
+ * Should cleanly compile with -Wall -W now (gcc) on Solaris.
175
+ * Added solaris.txt to doc directory.
176
+ * MANIFEST corrections.
177
+
178
+ == 0.5.1 - 16-Jul-2003
179
+ * Fixed a nasty file descriptor bug in the Linux code, where file descriptors
180
+ were continuously being used up.
181
+ * Added the BTIME (boot time) constant for Linux.
182
+ * Fixed up the test/test.rb file a bit.
183
+ * Added BTIME tests to tc_linux.rb.
184
+
185
+ == 0.5.0 - 11-Jul-200
186
+ * Added HP-UX support!
187
+ * Note that passing PID's or strings as arguments to ps() is not supported
188
+ in the HP-UX version. This functionality will be stripped out of the
189
+ other versions in a future release. See the README file for more details.
190
+ * Removed the VERSION() class method. Use the constant instead.
191
+ * Separated the rd docs from their respective source files. Now in the doc
192
+ directory.
193
+ * Got rid of the interactive html generation in extconf.rb.
194
+ * Changed License to Artistic.
195
+
196
+ == 0.4.3 - 30-May-2003
197
+ * Added a version.h file to store the version number. Modified all of the
198
+ C source files to use that instead of hard coding the version everywhere.
199
+ * Added a generic test.rb script for those without TestUnit installed, or
200
+ just futzing in general. Modified the extconf.rb script to copy this
201
+ instead of writing an inline HERE document.
202
+ * Modified extconf.rb so that it builds with mingw or cygwin. Thanks go to
203
+ Peter Fischer for the spot and patch.
204
+ * Modified test suite to work with TestUnit 0.1.6 or 0.1.8.
205
+
206
+ == 0.4.2 - 14-Apr-2003
207
+ * Added pure Ruby version for Win32 - thanks Park Heesob.
208
+ * Modified extconf.rb file to handle pure Ruby versions.
209
+ * Added install_pure_ruby.rb file, an alternate installation
210
+ script for pure Ruby versions.
211
+
212
+ == 0.4.1 - 31-Mar-2003
213
+ * Added support for Solaris 2.5.x.
214
+ * All exceptions are now a direct subclass of StandardError.
215
+ * Value returned for wchan now more meaningful (2.5.x only for now).
216
+ * Fixed the start, utime and ctime for FreeBSD.
217
+ * Minor fix to FreeBSD test suite.
218
+ * Some changes to extconf.rb.
219
+ * Minor doc changes.
220
+ * Added License and Copyright info.
221
+
222
+ == 0.4.0 - 10-Mar-2003
223
+ * Added MS Windows support (non-cygwin).
224
+ * Added environment information for Linux version.
225
+ * Added real exceptions (type depends on platform).
226
+ * Added a test suite (for those with testunit installed).
227
+ * Removed the sys-uname requirement.
228
+ * Heavily modified the extconf.rb script.
229
+ * Changed "Changelog" to "CHANGES" and "Manifest" to "MANIFEST".
230
+ * Added a VERSION constant and class method.
231
+ * Minor internal directory layout change (put 'os' under 'lib').
232
+ * Changed package name to lower case.
233
+ * Doc changes, including license information.
234
+
235
+ == 0.3.1 - 16-Aug-2002
236
+ * Added a "comm" field to the sunos version. I am going to try to make this a
237
+ common field for all platforms to help reduce RUBY_PLATFORM checking.
238
+ * Fixed the release date for 0.3.0 (was accidentally marked *July*).
239
+ * Added an INSTALL file.
240
+ * Minor documentation change to the sunos.c source file.
241
+
242
+ == 0.3.0 - 11-Aug-2002
243
+ * Added FreeBSD support!
244
+ * Struct name changed to just "ProcTableStruct" to be compliant with future
245
+ versions of Ruby.
246
+ * The ps() function now returns an array of ProcTableStruct's in lvalue context.
247
+ * Fixed the ability to search by process name in Linux.
248
+ * Modified Linux "comm" field to strip parenthesis.
249
+ * Some doc changes/additions.
250
+ * Added Sean Chittenden to the "Acknowledgements" section. Sean provided me
251
+ with access to a FreeBSD box, which is how I was able to provide FreeBSD
252
+ support. Thanks Sean!
253
+
254
+ == 0.2.0 - 19-Jul-2002
255
+ * Added the ability to search by process name.
256
+ * test.rb modified to be cross-platform.
257
+ * Solaris - fixed bug with fname (was accidentally called "name").
258
+
259
+ == 0.1.0 - 2-Jul-2002
260
+ - Initial release.
data/MANIFEST ADDED
@@ -0,0 +1,38 @@
1
+ CHANGES
2
+ INSTALL
3
+ MANIFEST
4
+ Rakefile
5
+ sys-proctable.gemspec
6
+
7
+ doc/freebsd.txt
8
+ doc/hpux.txt
9
+ doc/linux.txt
10
+ doc/solaris.txt
11
+ doc/top.txt
12
+ doc/windows.txt
13
+
14
+ example/example_ps.rb
15
+
16
+ ext/extconf.rb
17
+ ext/bsd/bsd.c
18
+ ext/darwin/darwin.c
19
+ ext/freebsd/freebsd.c
20
+ ext/freebsd/freebsd.h
21
+ ext/hpux/hpux.c
22
+ ext/hpux/hpux.h
23
+ ext/version.h
24
+
25
+ lib/sys/top.rb
26
+ lib/sys/linux.rb
27
+ lib/sys/sunos.rb
28
+ lib/sys/windows.rb
29
+
30
+ test/test_sys_proctable_all.rb
31
+ test/test_sys_proctable_darwin.rb
32
+ test/test_sys_proctable_freebsd.rb
33
+ test/test_sys_proctable_hpux.rb
34
+ test/test_sys_proctable_kvm.rb
35
+ test/test_sys_proctable_linux.rb
36
+ test/test_sys_proctable_sunos.rb
37
+ test/test_sys_proctable_windows.rb
38
+ test/test_sys_top.rb
data/README ADDED
@@ -0,0 +1,137 @@
1
+ = Description
2
+ A Ruby interface for gathering process information.
3
+
4
+ = Prerequisites
5
+ * Ruby 1.8.2 or later
6
+ * Test::Unit 2.x
7
+
8
+ = Supported Platforms
9
+ * Windows NT family (NT, 2000, XP, etc)
10
+ * Linux
11
+ * FreeBSD
12
+ * Solaris 2.8+
13
+ * HP-UX
14
+ * OS X
15
+
16
+ = Installation
17
+ * rake test (optional)
18
+ * rake install
19
+
20
+ = Synopsis
21
+ require 'sys/proctable'
22
+ include Sys
23
+
24
+ # Everything
25
+ ProcTable.ps{ |p|
26
+ puts p.pid.to_s
27
+ puts p.comm
28
+ ...
29
+ }
30
+
31
+ or
32
+
33
+ # Just one process
34
+ s = ProcTable.ps(2123)
35
+ puts s.pid.to_s
36
+ puts s.comm
37
+ ...
38
+
39
+ # Return the results as an array of ProcTableStructs
40
+ a = ProcTable.ps
41
+ a.each do |p|
42
+ puts a.pid
43
+ ...
44
+ end
45
+
46
+ = Notes
47
+ Windows users may pass a host name as a second argument to get process
48
+ information from a different host. This relies on the WMI service running.
49
+
50
+ If you're building C source code, the ts_all.rb file is autogenerated for
51
+ you.
52
+
53
+ = Known Issues
54
+ === FreeBSD
55
+ If you're building on FreeBSD, a standard /proc filesystem read approach is
56
+ used if mounted. Otherwise, a kvm interface is used. There are more fields
57
+ available with the kvm interface, but keep in mind that you need to be a
58
+ member of the kvm group (or root) to use this. You can tweak the extconf.rb
59
+ file manually if you want to force the issue.
60
+
61
+ === OpenBSD, NetBSD
62
+ This library will attempt to use the kvm interface. It is untested,
63
+ however.
64
+
65
+ === Solaris
66
+ The cmdline member on Solaris is limited to 80 characters unless you (or
67
+ your program) own the process. This is a Solaris design flaw/feature.
68
+
69
+ === OS X
70
+ At the moment you do not get the full command line string. The code required
71
+ to get this information is obnoxious and I don't have any compelling desire
72
+ to add it. However, if you're willing to submit a patch I'll accept it.
73
+
74
+ You can find a good starting point with the OS X code found in Dan Urist's
75
+ Proc::ProcessTable module. You can find that module on CPAN. Point your
76
+ browser at http://search.cpan.org.
77
+
78
+ === Misc
79
+ If you build your library as a C extension (which is what will happen if
80
+ you run the 'build', 'test', or 'install' Rake tasks), then the .rb files
81
+ file under 'lib/sys/' are renamed to '.orig', except top.rb. This is
82
+ necessary to prevent mkmf from installing them during a 'make install'.
83
+
84
+ The 'clean' Rake task will rename them back to '.rb'.
85
+
86
+ === Thread Safety
87
+ I am not currently using a thread-safe version of readdir(). I am not
88
+ especially concerned about it either. If you are trying to read information
89
+ out of /proc from different threads at the same time there is something
90
+ seriously wrong with your code logic. Using readdir_r() still won't solve
91
+ all potential thread safety issues anyway.
92
+
93
+ = Future Plans
94
+ Research has indicated that the kvm approach is less favored than a sysctl
95
+ approach on BSD variants. I will try to add this interface in a future
96
+ release.
97
+
98
+ = Acknowledgements
99
+ This library is largely based on the Perl module Proc::ProcessTable by
100
+ Dan Urist. Many ideas, as well as large chunks of code, were taken
101
+ from his work. So, a big THANK YOU goes out to Dan Urist.
102
+
103
+ A big thanks also goes out to Mike Hall who was very helpful with ideas,
104
+ logic and testing.
105
+
106
+ Thanks also go to Sean Chittenden for providing an account on one of his
107
+ FreeBSD machines. This is how the FreeBSD support was (initially) added.
108
+
109
+ Thanks go to James Hranicky for providing a patch that grabs name, eid,
110
+ euid, gid and guid info in the Linux version, along with some general
111
+ debugging help.
112
+
113
+ Finally I'd like to thank all the folks who have submitted bug reports
114
+ and/or patches.
115
+
116
+ = Help Wanted
117
+ I do not have access to all platforms. There are a few other major platforms
118
+ out there, namely AIX, OpenBSD, and IRIX, among others, that I would
119
+ like to see ports for. There are two ways you can help - either submit code
120
+ for your particular platform or give me an account on your platform so I can
121
+ develop on it.
122
+
123
+ = More documentation
124
+ See the documentation under the 'doc' directory for more information,
125
+ including platform specific notes and issues.
126
+
127
+ = License
128
+ Ruby's
129
+
130
+ = Copyright
131
+ (C) 2003-2009 Daniel J. Berger
132
+ All Rights Reserved.
133
+
134
+ = Author
135
+ Daniel J. Berger
136
+ djberg96 at nospam at gmail dot com
137
+ imperator on IRC (Freenode)
data/doc/solaris.txt ADDED
@@ -0,0 +1,83 @@
1
+ = Description
2
+ A Ruby interface for gathering process table information. This is a pure
3
+ Ruby implementation that unpacks data out of your /proc filesystem.
4
+
5
+ = Synopsis
6
+ require 'sys/proctable'
7
+ include Sys
8
+
9
+ # Everything
10
+ ProcTable.ps{ |p|
11
+ puts p.pid.to_s
12
+ puts p.comm
13
+ ...
14
+ }
15
+
16
+ or
17
+
18
+ # Just one process
19
+ s = ProcTable.ps(2123)
20
+ puts s.pid.to_s
21
+ puts s.comm
22
+ ...
23
+
24
+ # Return the results as an array of ProcTableStructs
25
+ a = ProcTable.ps
26
+ a.each do |p|
27
+ puts a.pid
28
+ ...
29
+ end
30
+
31
+ = Constants
32
+ VERSION
33
+ Returns the current version number for this package (as a string).
34
+
35
+ = Class Methods
36
+ ProcTable.fields
37
+ Returns an array of fields available on the current OS.
38
+
39
+ ProcTable.ps(pid=nil)
40
+ ProcTable.ps{ |s| ... }
41
+ If no pid is included as an argument, in block form it
42
+ returns a struct of type ProcTableStruct for every process in the proc
43
+ table. Otherwise it returns an array of ProcTable struct's. If a pid
44
+ is provided it will return a single ProcTable struct for that pid, or
45
+ nil if it is not found.
46
+
47
+ = Exception Classes
48
+ ProcTable::Error < StandardError
49
+ Raised if the /proc directory is unreadable and/or unmounted.
50
+
51
+ = Supported fields
52
+ You can view the supported fields with the "fields()" class method.
53
+
54
+ = Future Plans
55
+ Support for 2.6 and 2.7 if requested.
56
+
57
+ = Notes
58
+ The cmdline string is limited to 80 characters, except for those processes
59
+ which you (or your program) own.
60
+
61
+ = Known Bugs
62
+ None that I am aware of. Please log any bugs on the RubyForge project page at
63
+ http://www.rubyforge.org/projects/sysutils
64
+
65
+ = License
66
+ Ruby's
67
+
68
+ = Copyright
69
+ (C) 2003-2009 Daniel J. Berger
70
+ All Rights Reserved.
71
+
72
+ = Warranty
73
+ This package is provided "as is" and without any express or
74
+ implied warranties, including, without limitation, the implied
75
+ warranties of merchantability and fitness for a particular purpose.
76
+
77
+ = Author
78
+ Daniel J. Berger
79
+ djberg96 at nospam at gmail dot com
80
+ imperator on IRC (Freenode)
81
+
82
+ = See Also
83
+ ps, proc
data/doc/top.txt ADDED
@@ -0,0 +1,50 @@
1
+ = Description
2
+ A simple 'top' interface for Ruby
3
+
4
+ = Prerequisites
5
+ Requires the "sys/proctable" package (which should be installed along
6
+ with this package).
7
+
8
+ = Synopsis
9
+ require "sys/top"
10
+ include Sys
11
+
12
+ Top.top(5).each{ |ps|
13
+ p ps
14
+ }
15
+
16
+ = Constants
17
+ VERSION
18
+ Returns the version number of this package as a String.
19
+
20
+ = Class Methods
21
+ Top.top(number=10, field="pctcpu")
22
+ Returns an array of ProcTableStruct's. The size of the array (i.e. the
23
+ number of processes) that it returns is based on +number+, and sorted by
24
+ +pctcpu+. By default, the size and field values are 10 and "pctcpu",
25
+ respectively.
26
+
27
+ = Notes
28
+ Not all fields are available on all platforms. Please check your
29
+ platform specific documentation for which fields are available.
30
+
31
+ = Bugs
32
+ None that I'm aware of. Please log bug reports on the project page at
33
+ http://www.rubyforge.org/projects/sysutils
34
+
35
+ = License
36
+ Ruby's
37
+
38
+ = Copyright
39
+ (C) 2004-2009 Daniel J. Berger
40
+ All Rights Reserved.
41
+
42
+ = Warranty
43
+ This package is provided "as is" and without any express or
44
+ implied warranties, including, without limitation, the implied
45
+ warranties of merchantability and fitness for a particular purpose.
46
+
47
+ = Author
48
+ Daniel J. Berger
49
+ djberg96 at nospam at gmail dot com
50
+ imperator on IRC (Freenode)