|
From: <sv...@va...> - 2005-06-01 04:06:57
|
Author: njn
Date: 2005-06-01 05:06:55 +0100 (Wed, 01 Jun 2005)
New Revision: 3835
Modified:
trunk/coregrind/core.h
trunk/coregrind/pub_core_options.h
Log:
Move VALGRINDCLO and VALGRINDOPTS into m_options.
Modified: trunk/coregrind/core.h
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/core.h 2005-06-01 03:48:33 UTC (rev 3834)
+++ trunk/coregrind/core.h 2005-06-01 04:06:55 UTC (rev 3835)
@@ -64,25 +64,6 @@
/* The directory we look for all our auxillary files in */
#define VALGRINDLIB "VALGRINDLIB"
=20
-/* Additional command-line arguments; they are overridden by actual
- command-line option. Each argument is separated by spaces. There
- is no quoting mechanism.
- */
-#define VALGRINDOPTS "VALGRIND_OPTS"
-
-/* If this variable is present in the environment, then valgrind will
- not parse the command line for options at all; all options come
- from this variable. Arguments are terminated by ^A (\001). There
- is no quoting mechanism.
-
- This variable is not expected to be set by anything other than
- Valgrind itself, as part of its handling of execve with
- --trace-children=3Dyes. This variable should not be present in the
- client environment.
- */
-#define VALGRINDCLO "_VALGRIND_CLO"
-
-
/* Application-visible file descriptor limits */
extern Int VG_(fd_soft_limit);
extern Int VG_(fd_hard_limit);
Modified: trunk/coregrind/pub_core_options.h
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/pub_core_options.h 2005-06-01 03:48:33 UTC (rev 3834)
+++ trunk/coregrind/pub_core_options.h 2005-06-01 04:06:55 UTC (rev 3835)
@@ -39,6 +39,22 @@
=20
#include "pub_tool_options.h"
=20
+/* Additional command-line arguments; they are overridden by actual
+ command-line option. Each argument is separated by spaces. There
+ is no quoting mechanism. */
+#define VALGRINDOPTS "VALGRIND_OPTS"
+
+/* If this variable is present in the environment, then valgrind will
+ not parse the command line for options at all; all options come
+ from this variable. Arguments are terminated by ^A (\001). There
+ is no quoting mechanism.
+
+ This variable is not expected to be set by anything other than
+ Valgrind itself, as part of its handling of execve with
+ --trace-children=3Dyes. This variable should not be present in the
+ client environment. */
+#define VALGRINDCLO "_VALGRIND_CLO"
+
/* Default destination port to be used in logging over a network, if
none specified. */
#define VG_CLO_DEFAULT_LOGPORT 1500
|