blob: 1bf2cc02e8311ab5a7eaa512501309d653f594df [file] [log] [blame]
sewardj32824022005-05-17 13:45:04 +00001
2/*--------------------------------------------------------------------*/
njnb1cc5d62010-07-06 04:05:23 +00003/*--- Command line options. m_options.c ---*/
sewardj32824022005-05-17 13:45:04 +00004/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
Elliott Hughesed398002017-06-21 14:41:24 -070010 Copyright (C) 2000-2017 Nicholas Nethercote
sewardj32824022005-05-17 13:45:04 +000011 njn@valgrind.org
12
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
njnc7561b92005-06-19 01:24:32 +000031#include "pub_core_basics.h"
njn374a36d2007-11-23 01:41:32 +000032#include "pub_core_vki.h"
njna3506d32005-05-18 04:36:01 +000033#include "pub_core_options.h"
sewardj6893d652006-10-15 01:25:13 +000034#include "pub_core_libcassert.h"
njn374a36d2007-11-23 01:41:32 +000035#include "pub_core_libcbase.h"
36#include "pub_core_libcfile.h"
sewardj6893d652006-10-15 01:25:13 +000037#include "pub_core_libcprint.h"
njn374a36d2007-11-23 01:41:32 +000038#include "pub_core_libcproc.h"
39#include "pub_core_mallocfree.h"
sewardj06421272009-11-05 08:55:13 +000040#include "pub_core_seqmatch.h" // VG_(string_match)
philipped0720e42015-03-12 20:43:46 +000041#include "pub_core_aspacemgr.h"
sewardj32824022005-05-17 13:45:04 +000042
njna3506d32005-05-18 04:36:01 +000043// See pub_{core,tool}_options.h for explanations of all these.
44
45
46/* Define, and set defaults. */
sewardj8d47a612015-02-05 12:59:46 +000047
Elliott Hughesed398002017-06-21 14:41:24 -070048const HChar *VG_(clo_toolname) = "memcheck"; // default to Memcheck
njna3506d32005-05-18 04:36:01 +000049VexControl VG_(clo_vex_control);
sewardj8d47a612015-02-05 12:59:46 +000050VexRegisterUpdates VG_(clo_px_file_backed) = VexRegUpd_INVALID;
51
njna3506d32005-05-18 04:36:01 +000052Bool VG_(clo_error_limit) = True;
sewardjb9779082006-05-12 23:50:15 +000053Int VG_(clo_error_exitcode) = 0;
philippe7b3d3562014-11-12 19:43:29 +000054HChar *VG_(clo_error_markers)[2] = {NULL, NULL};
sewardj0ba37c92011-07-12 11:46:24 +000055
sewardj26ed4192014-11-04 17:44:21 +000056#if defined(VGPV_arm_linux_android) \
57 || defined(VGPV_x86_linux_android) \
58 || defined(VGPV_mips32_linux_android) \
59 || defined(VGPV_arm64_linux_android)
sewardjdeddfdf2011-10-26 15:07:56 +000060VgVgdb VG_(clo_vgdb) = Vg_VgdbNo; // currently disabled on Android
61#else
sewardj0ba37c92011-07-12 11:46:24 +000062VgVgdb VG_(clo_vgdb) = Vg_VgdbYes;
sewardjdeddfdf2011-10-26 15:07:56 +000063#endif
sewardj3b290482011-05-06 21:02:55 +000064Int VG_(clo_vgdb_poll) = 5000;
65Int VG_(clo_vgdb_error) = 999999999;
philippe180a7502014-04-20 13:41:10 +000066UInt VG_(clo_vgdb_stop_at) = 0;
philippecffe2a52014-01-11 13:56:48 +000067const HChar *VG_(clo_vgdb_prefix) = NULL;
68const HChar *VG_(arg_vgdb_prefix) = NULL;
sewardj3b290482011-05-06 21:02:55 +000069Bool VG_(clo_vgdb_shadow_registers) = False;
sewardj0ba37c92011-07-12 11:46:24 +000070
njna3506d32005-05-18 04:36:01 +000071Int VG_(clo_gen_suppressions) = 0;
72Int VG_(clo_sanity_level) = 1;
73Int VG_(clo_verbosity) = 1;
sewardj2d9e8742009-08-07 15:46:56 +000074Bool VG_(clo_stats) = False;
sewardj71bc3cb2005-05-19 00:25:45 +000075Bool VG_(clo_xml) = False;
florian19f91bb2012-11-10 22:29:54 +000076const HChar* VG_(clo_xml_user_comment) = NULL;
njna3506d32005-05-18 04:36:01 +000077Bool VG_(clo_demangle) = True;
florian19f91bb2012-11-10 22:29:54 +000078const HChar* VG_(clo_soname_synonyms) = NULL;
njna3506d32005-05-18 04:36:01 +000079Bool VG_(clo_trace_children) = False;
florian19f91bb2012-11-10 22:29:54 +000080const HChar* VG_(clo_trace_children_skip) = NULL;
81const HChar* VG_(clo_trace_children_skip_by_arg) = NULL;
sewardj6e31f802007-11-17 22:29:25 +000082Bool VG_(clo_child_silent_after_fork) = False;
Elliott Hughesed398002017-06-21 14:41:24 -070083const HChar *VG_(clo_log_fname_unexpanded) = NULL;
84const HChar *VG_(clo_xml_fname_unexpanded) = NULL;
njna3506d32005-05-18 04:36:01 +000085Bool VG_(clo_time_stamp) = False;
86Int VG_(clo_input_fd) = 0; /* stdin */
bart2c68e3e2014-06-22 10:11:59 +000087Bool VG_(clo_default_supp) = True;
florian79316272014-10-07 18:36:28 +000088XArray *VG_(clo_suppressions); // array of strings
89XArray *VG_(clo_fullpath_after); // array of strings
sewardj71826f72012-12-06 18:23:20 +000090const HChar* VG_(clo_extra_debuginfo_path) = NULL;
sewardj5d616df2013-07-02 08:07:15 +000091const HChar* VG_(clo_debuginfo_server) = NULL;
92Bool VG_(clo_allow_mismatched_debuginfo) = False;
njna3506d32005-05-18 04:36:01 +000093UChar VG_(clo_trace_flags) = 0; // 00000000b
sewardj17c5e2e2012-12-28 09:12:14 +000094Bool VG_(clo_profyle_sbs) = False;
95UChar VG_(clo_profyle_flags) = 0; // 00000000b
96ULong VG_(clo_profyle_interval) = 0;
florian29e022d2012-07-02 21:13:34 +000097Int VG_(clo_trace_notbelow) = -1; // unspecified
98Int VG_(clo_trace_notabove) = -1; // unspecified
njna3506d32005-05-18 04:36:01 +000099Bool VG_(clo_trace_syscalls) = False;
100Bool VG_(clo_trace_signals) = False;
101Bool VG_(clo_trace_symtab) = False;
florian19f91bb2012-11-10 22:29:54 +0000102const HChar* VG_(clo_trace_symtab_patt) = "*";
njna3506d32005-05-18 04:36:01 +0000103Bool VG_(clo_trace_cfi) = False;
sewardjf767d962007-02-12 17:47:14 +0000104Bool VG_(clo_debug_dump_syms) = False;
105Bool VG_(clo_debug_dump_line) = False;
106Bool VG_(clo_debug_dump_frames) = False;
njna3506d32005-05-18 04:36:01 +0000107Bool VG_(clo_trace_redir) = False;
bart78bfc712011-12-08 16:14:59 +0000108enum FairSchedType
109 VG_(clo_fair_sched) = disable_fair_sched;
njna3506d32005-05-18 04:36:01 +0000110Bool VG_(clo_trace_sched) = False;
sewardj9c606bd2008-09-18 18:12:50 +0000111Bool VG_(clo_profile_heap) = False;
philipped99c26a2012-07-31 22:17:28 +0000112Int VG_(clo_core_redzone_size) = CORE_REDZONE_DEFAULT_SZB;
113// A value != -1 overrides the tool-specific value
114// VG_(needs_malloc_replacement).tool_client_redzone_szB
115Int VG_(clo_redzone_size) = -1;
Elliott Hughesed398002017-06-21 14:41:24 -0700116VgXTMemory VG_(clo_xtree_memory) = Vg_XTMemory_None;
117const HChar* VG_(clo_xtree_memory_file) = "xtmemory.kcg.%p";
118Bool VG_(clo_xtree_compress_strings) = True;
119
njna3506d32005-05-18 04:36:01 +0000120Int VG_(clo_dump_error) = 0;
121Int VG_(clo_backtrace_size) = 12;
philippe46207652013-01-20 17:11:58 +0000122Int VG_(clo_merge_recursive_frames) = 0; // default value: no merge
philippeec905f72014-08-17 20:03:51 +0000123UInt VG_(clo_sim_hints) = 0;
sewardj41ded2c2006-10-17 01:34:57 +0000124Bool VG_(clo_sym_offsets) = False;
philippea0a73932014-06-15 15:42:20 +0000125Bool VG_(clo_read_inline_info) = False; // Or should be put it to True by default ???
sewardjb8b79ad2008-03-03 01:35:41 +0000126Bool VG_(clo_read_var_info) = False;
florian79316272014-10-07 18:36:28 +0000127XArray *VG_(clo_req_tsyms); // array of strings
njna3506d32005-05-18 04:36:01 +0000128Bool VG_(clo_run_libc_freeres) = True;
Elliott Hughesa0664b92017-04-18 17:46:52 -0700129Bool VG_(clo_run_cxx_freeres) = True;
njna3506d32005-05-18 04:36:01 +0000130Bool VG_(clo_track_fds) = False;
131Bool VG_(clo_show_below_main)= False;
njna3506d32005-05-18 04:36:01 +0000132Bool VG_(clo_show_emwarns) = False;
sewardj91b470c2007-08-28 17:03:01 +0000133Word VG_(clo_max_stackframe) = 2000000;
florian1e802b62015-02-13 19:08:26 +0000134UInt VG_(clo_max_threads) = MAX_THREADS_DEFAULT;
sewardj95d86c02007-12-18 01:49:23 +0000135Word VG_(clo_main_stacksize) = 0; /* use client's rlimit.stack */
philipped0720e42015-03-12 20:43:46 +0000136Word VG_(clo_valgrind_stacksize) = VG_DEFAULT_STACK_ACTIVE_SZB;
njna3506d32005-05-18 04:36:01 +0000137Bool VG_(clo_wait_for_gdb) = False;
philippeec905f72014-08-17 20:03:51 +0000138UInt VG_(clo_kernel_variant) = 0;
sewardj29dd9e62015-08-31 14:37:25 +0000139Bool VG_(clo_dsymutil) = True;
sewardjc30cd9b2012-12-06 18:08:54 +0000140Bool VG_(clo_sigill_diag) = True;
sewardj49984ea2013-10-18 13:21:26 +0000141UInt VG_(clo_unw_stack_scan_thresh) = 0; /* disabled by default */
142UInt VG_(clo_unw_stack_scan_frames) = 5;
143
sewardj18d27dd2015-08-31 14:24:14 +0000144// Set clo_smc_check so that it provides transparent self modifying
145// code support for "correct" programs at the smallest achievable
146// expense for this arch.
147#if defined(VGA_x86) || defined(VGA_amd64) || defined(VGA_s390x)
148VgSmc VG_(clo_smc_check) = Vg_SmcAllNonFile;
149#elif defined(VGA_ppc32) || defined(VGA_ppc64be) || defined(VGA_ppc64le) \
150 || defined(VGA_arm) || defined(VGA_arm64) \
Elliott Hughesed398002017-06-21 14:41:24 -0700151 || defined(VGA_mips32) || defined(VGA_mips64)
sewardj18d27dd2015-08-31 14:24:14 +0000152VgSmc VG_(clo_smc_check) = Vg_SmcStack;
153#else
154# error "Unknown arch"
155#endif
156
sewardj67f7c032014-10-23 19:48:01 +0000157#if defined(VGO_darwin)
158UInt VG_(clo_resync_filter) = 1; /* enabled, but quiet */
159#else
160UInt VG_(clo_resync_filter) = 0; /* disabled */
161#endif
162
sewardj32824022005-05-17 13:45:04 +0000163
sewardj6893d652006-10-15 01:25:13 +0000164/*====================================================================*/
njnb1cc5d62010-07-06 04:05:23 +0000165/*=== File expansion ===*/
sewardj6893d652006-10-15 01:25:13 +0000166/*====================================================================*/
167
njn374a36d2007-11-23 01:41:32 +0000168// Copies the string, prepending it with the startup working directory, and
169// expanding %p and %q entries. Returns a new, malloc'd string.
florian19f91bb2012-11-10 22:29:54 +0000170HChar* VG_(expand_file_name)(const HChar* option_name, const HChar* format)
njn374a36d2007-11-23 01:41:32 +0000171{
florian29d82f62014-09-27 17:42:07 +0000172 const HChar *base_dir;
njn374a36d2007-11-23 01:41:32 +0000173 Int len, i = 0, j = 0;
florian19f91bb2012-11-10 22:29:54 +0000174 HChar* out;
florianf34ee4e2014-11-29 13:31:18 +0000175 const HChar *message = NULL;
njn374a36d2007-11-23 01:41:32 +0000176
florian29d82f62014-09-27 17:42:07 +0000177 base_dir = VG_(get_startup_wd)();
njn374a36d2007-11-23 01:41:32 +0000178
179 if (VG_STREQ(format, "")) {
180 // Empty name, bad.
florianf34ee4e2014-11-29 13:31:18 +0000181 message = "No filename given\n";
njn5542d8f2009-06-09 00:50:45 +0000182 goto bad;
183 }
184
185 // If 'format' starts with a '~', abort -- the user probably expected the
186 // shell to expand but it didn't (see bug 195268 for details). This means
187 // that we don't allow a legitimate filename beginning with '~' but that
188 // seems very unlikely.
189 if (format[0] == '~') {
florianf34ee4e2014-11-29 13:31:18 +0000190 message =
191 "Filename begins with '~'\n"
njnb1cc5d62010-07-06 04:05:23 +0000192 "You probably expected the shell to expand the '~', but it\n"
193 "didn't. The rules for '~'-expansion vary from shell to shell.\n"
florianf34ee4e2014-11-29 13:31:18 +0000194 "You might have more luck using $HOME instead.\n";
njn374a36d2007-11-23 01:41:32 +0000195 goto bad;
196 }
197
florian3e172742014-02-19 11:16:00 +0000198 len = VG_(strlen)(format) + 1;
sewardj9c606bd2008-09-18 18:12:50 +0000199 out = VG_(malloc)( "options.efn.1", len );
njn374a36d2007-11-23 01:41:32 +0000200
201#define ENSURE_THIS_MUCH_SPACE(x) \
202 if (j + x >= len) { \
203 len += (10 + x); \
sewardj9c606bd2008-09-18 18:12:50 +0000204 out = VG_(realloc)("options.efn.2(multiple)", out, len); \
njn374a36d2007-11-23 01:41:32 +0000205 }
206
njn374a36d2007-11-23 01:41:32 +0000207 while (format[i]) {
208 if (format[i] != '%') {
209 ENSURE_THIS_MUCH_SPACE(1);
210 out[j++] = format[i++];
211
212 } else {
213 // We saw a '%'. What's next...
214 i++;
215 if ('%' == format[i]) {
216 // Replace '%%' with '%'.
217 ENSURE_THIS_MUCH_SPACE(1);
218 out[j++] = format[i++];
219 }
220 else if ('p' == format[i]) {
221 // Print the PID. Assume that it's not longer than 10 chars --
222 // reasonable since 'pid' is an Int (ie. 32 bits).
223 Int pid = VG_(getpid)();
224 ENSURE_THIS_MUCH_SPACE(10);
225 j += VG_(sprintf)(&out[j], "%d", pid);
226 i++;
227 }
Elliott Hughesed398002017-06-21 14:41:24 -0700228 else if ('n' == format[i]) {
229 // Print a seq nr.
230 static Int last_pid;
231 static Int seq_nr;
232 Int pid = VG_(getpid)();
233 if (last_pid != pid)
234 seq_nr = 0;
235 last_pid = pid;
236 seq_nr++;
237 ENSURE_THIS_MUCH_SPACE(10);
238 j += VG_(sprintf)(&out[j], "%d", seq_nr);
239 i++;
240 }
njn2dd08f52007-11-23 22:37:35 +0000241 else if ('q' == format[i]) {
242 i++;
243 if ('{' == format[i]) {
244 // Get the env var name, print its contents.
florian57d534d2014-09-06 20:40:28 +0000245 HChar *qual;
246 Int begin_qualname = ++i;
njn2dd08f52007-11-23 22:37:35 +0000247 while (True) {
248 if (0 == format[i]) {
florianf34ee4e2014-11-29 13:31:18 +0000249 message = "Missing '}' in %q specifier\n";
njn2dd08f52007-11-23 22:37:35 +0000250 goto bad;
251 } else if ('}' == format[i]) {
florian57d534d2014-09-06 20:40:28 +0000252 Int qualname_len = i - begin_qualname;
253 HChar qualname[qualname_len + 1];
254 VG_(strncpy)(qualname, format + begin_qualname,
255 qualname_len);
256 qualname[qualname_len] = '\0';
njn2dd08f52007-11-23 22:37:35 +0000257 qual = VG_(getenv)(qualname);
258 if (NULL == qual) {
florianf34ee4e2014-11-29 13:31:18 +0000259 // This memory will leak, But we don't care because
260 // VG_(fmsg_bad_option) will terminate the process.
261 HChar *str = VG_(malloc)("options.efn.3",
262 100 + qualname_len);
263 VG_(sprintf)(str,
264 "Environment variable '%s' is not set\n",
265 qualname);
266 message = str;
njn2dd08f52007-11-23 22:37:35 +0000267 goto bad;
268 }
njn2dd08f52007-11-23 22:37:35 +0000269 i++;
270 break;
271 }
272 i++;
273 }
274 ENSURE_THIS_MUCH_SPACE(VG_(strlen)(qual));
275 j += VG_(sprintf)(&out[j], "%s", qual);
276 } else {
florianf34ee4e2014-11-29 13:31:18 +0000277 message = "Expected '{' after '%q'\n";
njn2dd08f52007-11-23 22:37:35 +0000278 goto bad;
njn374a36d2007-11-23 01:41:32 +0000279 }
njn374a36d2007-11-23 01:41:32 +0000280 }
281 else {
282 // Something else, abort.
florianf34ee4e2014-11-29 13:31:18 +0000283 message = "Expected 'p' or 'q' or '%' after '%'\n";
njn374a36d2007-11-23 01:41:32 +0000284 goto bad;
285 }
286 }
287 }
288 ENSURE_THIS_MUCH_SPACE(1);
289 out[j++] = 0;
290
florian3e172742014-02-19 11:16:00 +0000291 // If 'out' is not an absolute path name, prefix it with the startup dir.
292 if (out[0] != '/') {
Elliott Hughesa0664b92017-04-18 17:46:52 -0700293 if (base_dir == NULL) {
294 message = "Current working dir doesn't exist, use absolute path\n";
295 goto bad;
296 }
florian3e172742014-02-19 11:16:00 +0000297 len = VG_(strlen)(base_dir) + 1 + VG_(strlen)(out) + 1;
298
299 HChar *absout = VG_(malloc)("options.efn.4", len);
300 VG_(strcpy)(absout, base_dir);
301 VG_(strcat)(absout, "/");
302 VG_(strcat)(absout, out);
303 VG_(free)(out);
304 out = absout;
305 }
306
njn374a36d2007-11-23 01:41:32 +0000307 return out;
308
309 bad: {
florianf34ee4e2014-11-29 13:31:18 +0000310 vg_assert(message != NULL);
311 // 2: 1 for the '=', 1 for the NUL.
312 HChar opt[VG_(strlen)(option_name) + VG_(strlen)(format) + 2];
313 VG_(sprintf)(opt, "%s=%s", option_name, format);
314 VG_(fmsg_bad_option)(opt, "%s", message);
njn374a36d2007-11-23 01:41:32 +0000315 }
316}
317
sewardj06421272009-11-05 08:55:13 +0000318/*====================================================================*/
319/*=== --trace-children= support ===*/
320/*====================================================================*/
321
322static HChar const* consume_commas ( HChar const* c ) {
323 while (*c && *c == ',') {
324 ++c;
325 }
326 return c;
327}
328
329static HChar const* consume_field ( HChar const* c ) {
330 while (*c && *c != ',') {
331 ++c;
332 }
333 return c;
334}
335
sewardj8eb8bab2015-07-21 14:44:28 +0000336/* Should we trace into this child executable (across execve, spawn etc) ?
sewardj9ab64a42010-12-06 11:40:04 +0000337 This involves considering --trace-children=,
338 --trace-children-skip=, --trace-children-skip-by-arg=, and the name
339 of the executable. 'child_argv' must not include the name of the
340 executable itself; iow child_argv[0] must be the first arg, if any,
341 for the child. */
florian518850b2014-10-22 22:25:30 +0000342Bool VG_(should_we_trace_this_child) ( const HChar* child_exe_name,
343 const HChar** child_argv )
sewardj06421272009-11-05 08:55:13 +0000344{
345 // child_exe_name is pulled out of the guest's space. We
346 // should be at least marginally cautious with it, lest it
347 // explode or burst into flames unexpectedly.
348 if (child_exe_name == NULL || VG_(strlen)(child_exe_name) == 0)
349 return VG_(clo_trace_children); // we know narfink
350
sewardj06421272009-11-05 08:55:13 +0000351 // If --trace-children=no, the answer is simply NO.
352 if (! VG_(clo_trace_children))
353 return False;
354
sewardj9ab64a42010-12-06 11:40:04 +0000355 // Otherwise, look for other reasons to say NO. First,
356 // see if the exe name matches any of the patterns specified
357 // by --trace-children-skip=.
sewardj06421272009-11-05 08:55:13 +0000358 if (VG_(clo_trace_children_skip)) {
359 HChar const* last = VG_(clo_trace_children_skip);
florian19f91bb2012-11-10 22:29:54 +0000360 HChar const* name = child_exe_name;
sewardj06421272009-11-05 08:55:13 +0000361 while (*last) {
362 Bool matches;
363 HChar* patt;
364 HChar const* first = consume_commas(last);
365 last = consume_field(first);
366 if (first == last)
367 break;
368 vg_assert(last > first);
369 /* copy the candidate string into a temporary malloc'd block
370 so we can use VG_(string_match) on it. */
371 patt = VG_(calloc)("m_options.swttc.1", last - first + 1, 1);
372 VG_(memcpy)(patt, first, last - first);
373 vg_assert(patt[last-first] == 0);
374 matches = VG_(string_match)(patt, name);
375 VG_(free)(patt);
376 if (matches)
377 return False;
378 }
379 }
sewardj9ab64a42010-12-06 11:40:04 +0000380
381 // Check if any of the args match any of the patterns specified
382 // by --trace-children-skip-by-arg=.
383 if (VG_(clo_trace_children_skip_by_arg) && child_argv != NULL) {
384 HChar const* last = VG_(clo_trace_children_skip_by_arg);
385 while (*last) {
386 Int i;
387 Bool matches;
388 HChar* patt;
389 HChar const* first = consume_commas(last);
390 last = consume_field(first);
391 if (first == last)
392 break;
393 vg_assert(last > first);
394 /* copy the candidate string into a temporary malloc'd block
395 so we can use VG_(string_match) on it. */
396 patt = VG_(calloc)("m_options.swttc.1", last - first + 1, 1);
397 VG_(memcpy)(patt, first, last - first);
398 vg_assert(patt[last-first] == 0);
399 for (i = 0; child_argv[i]; i++) {
400 matches = VG_(string_match)(patt, child_argv[i]);
401 if (matches) {
402 VG_(free)(patt);
403 return False;
404 }
405 }
406 VG_(free)(patt);
407 }
408 }
409
sewardj06421272009-11-05 08:55:13 +0000410 // --trace-children=yes, and this particular executable isn't
411 // excluded
412 return True;
413}
njn374a36d2007-11-23 01:41:32 +0000414
sewardj6893d652006-10-15 01:25:13 +0000415
sewardj32824022005-05-17 13:45:04 +0000416/*--------------------------------------------------------------------*/
njnb1cc5d62010-07-06 04:05:23 +0000417/*--- end ---*/
sewardj32824022005-05-17 13:45:04 +0000418/*--------------------------------------------------------------------*/