gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gold / common.h
index 6c281c917e0b3231970f2a0f6f1582213dea781f..abf8242da16758767db5ae5eec0c6c386ed4f607 100644 (file)
@@ -1,6 +1,6 @@
 // common.h -- handle common symbols for gold   -*- C++ -*-
 
-// Copyright 2006, 2007, 2008 Free Software Foundation, Inc.
+// Copyright (C) 2006-2020 Free Software Foundation, Inc.
 // Written by Ian Lance Taylor <iant@google.com>.
 
 // This file is part of gold.
@@ -35,10 +35,9 @@ class Symbol_table;
 class Allocate_commons_task : public Task
 {
  public:
-  Allocate_commons_task(Symbol_table* symtab, Layout* layout,
-                       Task_token* symtab_lock, Task_token* blocker)
-    : symtab_(symtab), layout_(layout), symtab_lock_(symtab_lock),
-      blocker_(blocker)
+  Allocate_commons_task(Symbol_table* symtab, Layout* layout, Mapfile* mapfile,
+                       Task_token* blocker)
+    : symtab_(symtab), layout_(layout), mapfile_(mapfile), blocker_(blocker)
   { }
 
   // The standard Task methods.
@@ -59,7 +58,7 @@ class Allocate_commons_task : public Task
  private:
   Symbol_table* symtab_;
   Layout* layout_;
-  Task_token* symtab_lock_;
+  Mapfile* mapfile_;
   Task_token* blocker_;
 };
 
This page took 0.02397 seconds and 4 git commands to generate.