]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Move VG_CLO_DEFAULT_LOGPORT to a better spot.
authorNicholas Nethercote <njn@valgrind.org>
Sat, 18 Jun 2005 04:13:54 +0000 (04:13 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Sat, 18 Jun 2005 04:13:54 +0000 (04:13 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3932

auxprogs/valgrind-listener.c
coregrind/pub_core_libcfile.h
coregrind/pub_core_options.h

index c8db19d8547edd6f5017e63720f0b836875f2b98..a59b515e914d58424b4557909734348eeb6b4a03 100644 (file)
@@ -46,7 +46,7 @@
 
 #include "core.h"
 #include "pub_core_libcassert.h"    // For VG_BUGS_TO
-#include "pub_core_options.h"       // For VG_CLO_DEFAULT_LOGPORT
+#include "pub_core_libcfile.h"      // For VG_CLO_DEFAULT_LOGPORT
 
 
 /*---------------------------------------------------------------*/
index 84687b05562230a1330b0f5ebd47d8e1d7202685..740fa9574a01696c9e307d20129d364024284df9 100644 (file)
@@ -46,6 +46,10 @@ extern Int VG_(fd_hard_limit);
 extern Int VG_(safe_fd) ( Int oldfd );
 extern Int VG_(fcntl)   ( Int fd, Int cmd, Int arg );
 
+/* Default destination port to be used in logging over a network, if
+   none specified. */
+#define VG_CLO_DEFAULT_LOGPORT 1500
+
 extern Int VG_(write_socket)( Int sd, void *msg, Int count );
 extern Int VG_(connect_via_socket)( UChar* str );
 extern Int VG_(getsockname) ( Int sd, struct vki_sockaddr *name, Int *namelen );
index bcdb0e42a8600247d42c81926d0b5d75dc809676..36cd131b0549697e6cc54fe513345847911b7122 100644 (file)
 
 #include "pub_tool_options.h"
 
-/* Default destination port to be used in logging over a network, if
-   none specified. */
-#define VG_CLO_DEFAULT_LOGPORT 1500
-
 /* The max number of suppression files. */
 #define VG_CLO_MAX_SFILES 10