summaryrefslogtreecommitdiff
path: root/gdbserver
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2022-03-28 09:46:55 -0600
committerTom Tromey <tromey@adacore.com>2022-03-30 09:08:48 -0600
commitc50e54825bfea1ab6afbd984a4d2e78e9306e70f (patch)
tree661e2a6a793aeb0a6ede10a3c5543253cc96eb08 /gdbserver
parentd537777dfe634f3109125156484e33d421b03f1b (diff)
Consolidate definition of current_directory
I noticed that both gdbserver and gdb define current_directory. However, as it is referenced by gdbsupport, it seemed better to define it there as well. This patch also moves the declaration to pathstuff.h. Tested by rebuilding.
Diffstat (limited to 'gdbserver')
-rw-r--r--gdbserver/server.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/gdbserver/server.cc b/gdbserver/server.cc
index 8e53f226d3..9f52d6e63f 100644
--- a/gdbserver/server.cc
+++ b/gdbserver/server.cc
@@ -65,10 +65,6 @@
break; \
}
-/* String containing the current directory (what getwd would return). */
-
-char *current_directory;
-
/* The environment to pass to the inferior when creating it. */
static gdb_environ our_environ;