aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r--gdb/gdbserver/Makefile.in2
-rw-r--r--gdb/gdbserver/gdb_proc_service.h2
-rw-r--r--gdb/gdbserver/gdbreplay.c2
-rw-r--r--gdb/gdbserver/i387-fp.c3
-rw-r--r--gdb/gdbserver/i387-fp.h3
-rw-r--r--gdb/gdbserver/inferiors.c3
-rw-r--r--gdb/gdbserver/linux-arm-low.c3
-rw-r--r--gdb/gdbserver/linux-cris-low.c4
-rw-r--r--gdb/gdbserver/linux-crisv32-low.c4
-rw-r--r--gdb/gdbserver/linux-i386-low.c4
-rw-r--r--gdb/gdbserver/linux-ia64-low.c2
-rw-r--r--gdb/gdbserver/linux-low.c3
-rw-r--r--gdb/gdbserver/linux-low.h2
-rw-r--r--gdb/gdbserver/linux-m32r-low.c2
-rw-r--r--gdb/gdbserver/linux-m68k-low.c4
-rw-r--r--gdb/gdbserver/linux-mips-low.c2
-rw-r--r--gdb/gdbserver/linux-ppc-low.c2
-rw-r--r--gdb/gdbserver/linux-ppc64-low.c2
-rw-r--r--gdb/gdbserver/linux-s390-low.c3
-rw-r--r--gdb/gdbserver/linux-sh-low.c2
-rw-r--r--gdb/gdbserver/linux-x86-64-low.c3
-rw-r--r--gdb/gdbserver/mem-break.c3
-rw-r--r--gdb/gdbserver/mem-break.h3
-rw-r--r--gdb/gdbserver/proc-service.c3
-rw-r--r--gdb/gdbserver/regcache.c3
-rw-r--r--gdb/gdbserver/regcache.h2
-rw-r--r--gdb/gdbserver/remote-utils.c5
-rw-r--r--gdb/gdbserver/server.c5
-rw-r--r--gdb/gdbserver/server.h3
-rw-r--r--gdb/gdbserver/spu-low.c2
-rw-r--r--gdb/gdbserver/target.c3
-rw-r--r--gdb/gdbserver/target.h3
-rw-r--r--gdb/gdbserver/thread-db.c3
-rw-r--r--gdb/gdbserver/utils.c4
-rw-r--r--gdb/gdbserver/win32-i386-low.c3
35 files changed, 42 insertions, 60 deletions
diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in
index eda7751..d708958 100644
--- a/gdb/gdbserver/Makefile.in
+++ b/gdb/gdbserver/Makefile.in
@@ -1,5 +1,5 @@
# Copyright (C) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
-# 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+# 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
# Free Software Foundation, Inc.
# This file is part of GDB.
diff --git a/gdb/gdbserver/gdb_proc_service.h b/gdb/gdbserver/gdb_proc_service.h
index e5aefbd..6e595a1 100644
--- a/gdb/gdbserver/gdb_proc_service.h
+++ b/gdb/gdbserver/gdb_proc_service.h
@@ -1,5 +1,5 @@
/* <proc_service.h> replacement for systems that don't have it.
- Copyright (C) 2000, 2006 Free Software Foundation, Inc.
+ Copyright (C) 2000, 2006, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/gdbreplay.c b/gdb/gdbserver/gdbreplay.c
index 34d55bf..c87d1ee 100644
--- a/gdb/gdbserver/gdbreplay.c
+++ b/gdb/gdbserver/gdbreplay.c
@@ -1,5 +1,5 @@
/* Replay a remote debug session logfile for GDB.
- Copyright (C) 1996, 1998, 1999, 2000, 2002, 2003, 2005, 2006
+ Copyright (C) 1996, 1998, 1999, 2000, 2002, 2003, 2005, 2006, 2007
Free Software Foundation, Inc.
Written by Fred Fish (fnf@cygnus.com) from pieces of gdbserver.
diff --git a/gdb/gdbserver/i387-fp.c b/gdb/gdbserver/i387-fp.c
index 830729b..cce8790 100644
--- a/gdb/gdbserver/i387-fp.c
+++ b/gdb/gdbserver/i387-fp.c
@@ -1,6 +1,5 @@
/* i387-specific utility functions, for the remote server for GDB.
- Copyright (C) 2000, 2001, 2002, 2005
- Free Software Foundation, Inc.
+ Copyright (C) 2000, 2001, 2002, 2005, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/i387-fp.h b/gdb/gdbserver/i387-fp.h
index e799415..6483b08 100644
--- a/gdb/gdbserver/i387-fp.h
+++ b/gdb/gdbserver/i387-fp.h
@@ -1,6 +1,5 @@
/* i387-specific utility functions, for the remote server for GDB.
- Copyright (C) 2000, 2001, 2002
- Free Software Foundation, Inc.
+ Copyright (C) 2000, 2001, 2002, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/inferiors.c b/gdb/gdbserver/inferiors.c
index ff761bc..63587e5 100644
--- a/gdb/gdbserver/inferiors.c
+++ b/gdb/gdbserver/inferiors.c
@@ -1,6 +1,5 @@
/* Inferior process information for the remote server for GDB.
- Copyright (C) 2002, 2005
- Free Software Foundation, Inc.
+ Copyright (C) 2002, 2005, 2007 Free Software Foundation, Inc.
Contributed by MontaVista Software.
diff --git a/gdb/gdbserver/linux-arm-low.c b/gdb/gdbserver/linux-arm-low.c
index c01f97a..0234093 100644
--- a/gdb/gdbserver/linux-arm-low.c
+++ b/gdb/gdbserver/linux-arm-low.c
@@ -1,7 +1,6 @@
/* GNU/Linux/ARM specific low level interface, for the remote server for GDB.
Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
- 2006
- Free Software Foundation, Inc.
+ 2006, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-cris-low.c b/gdb/gdbserver/linux-cris-low.c
index d331dcc..283d916 100644
--- a/gdb/gdbserver/linux-cris-low.c
+++ b/gdb/gdbserver/linux-cris-low.c
@@ -1,6 +1,6 @@
/* GNU/Linux/CRIS specific low level interface, for the remote server for GDB.
- Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
- Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
+ 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-crisv32-low.c b/gdb/gdbserver/linux-crisv32-low.c
index b6379f8..d811b7c 100644
--- a/gdb/gdbserver/linux-crisv32-low.c
+++ b/gdb/gdbserver/linux-crisv32-low.c
@@ -1,6 +1,6 @@
/* GNU/Linux/CRIS specific low level interface, for the remote server for GDB.
- Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
- Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
+ 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-i386-low.c b/gdb/gdbserver/linux-i386-low.c
index c0daf0b..4710773 100644
--- a/gdb/gdbserver/linux-i386-low.c
+++ b/gdb/gdbserver/linux-i386-low.c
@@ -1,6 +1,6 @@
/* GNU/Linux/i386 specific low level interface, for the remote server for GDB.
- Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006
- Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006,
+ 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-ia64-low.c b/gdb/gdbserver/linux-ia64-low.c
index d38be7d..55a0040 100644
--- a/gdb/gdbserver/linux-ia64-low.c
+++ b/gdb/gdbserver/linux-ia64-low.c
@@ -1,5 +1,5 @@
/* GNU/Linux/IA64 specific low level interface, for the remote server for GDB.
- Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002
+ Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2007
Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c
index 64273b5..eb8ef48 100644
--- a/gdb/gdbserver/linux-low.c
+++ b/gdb/gdbserver/linux-low.c
@@ -1,7 +1,6 @@
/* Low level interface to ptrace, for the remote server for GDB.
Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
- 2006
- Free Software Foundation, Inc.
+ 2006, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-low.h b/gdb/gdbserver/linux-low.h
index 53c5934..aa0102b 100644
--- a/gdb/gdbserver/linux-low.h
+++ b/gdb/gdbserver/linux-low.h
@@ -1,5 +1,5 @@
/* Internal interfaces for the GNU/Linux specific target code for gdbserver.
- Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-m32r-low.c b/gdb/gdbserver/linux-m32r-low.c
index dc48df9..a2ba507 100644
--- a/gdb/gdbserver/linux-m32r-low.c
+++ b/gdb/gdbserver/linux-m32r-low.c
@@ -1,5 +1,5 @@
/* GNU/Linux/m32r specific low level interface, for the remote server for GDB.
- Copyright (C) 2005 Free Software Foundation, Inc.
+ Copyright (C) 2005, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-m68k-low.c b/gdb/gdbserver/linux-m68k-low.c
index aa5a5dd..bc01db3 100644
--- a/gdb/gdbserver/linux-m68k-low.c
+++ b/gdb/gdbserver/linux-m68k-low.c
@@ -1,6 +1,6 @@
/* GNU/Linux/m68k specific low level interface, for the remote server for GDB.
- Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
- Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
+ 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-mips-low.c b/gdb/gdbserver/linux-mips-low.c
index 797d046..2921b28 100644
--- a/gdb/gdbserver/linux-mips-low.c
+++ b/gdb/gdbserver/linux-mips-low.c
@@ -1,5 +1,5 @@
/* GNU/Linux/MIPS specific low level interface, for the remote server for GDB.
- Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2005, 2006
+ Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2005, 2006, 2007
Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-ppc-low.c b/gdb/gdbserver/linux-ppc-low.c
index b66dd1d..1b97a98 100644
--- a/gdb/gdbserver/linux-ppc-low.c
+++ b/gdb/gdbserver/linux-ppc-low.c
@@ -1,6 +1,6 @@
/* GNU/Linux/PowerPC specific low level interface, for the remote server for
GDB.
- Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2005
+ Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2005, 2007
Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-ppc64-low.c b/gdb/gdbserver/linux-ppc64-low.c
index 04022cc..b0f573c 100644
--- a/gdb/gdbserver/linux-ppc64-low.c
+++ b/gdb/gdbserver/linux-ppc64-low.c
@@ -1,6 +1,6 @@
/* GNU/Linux/PowerPC64 specific low level interface, for the remote server for
GDB.
- Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2005
+ Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2005, 2007
Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-s390-low.c b/gdb/gdbserver/linux-s390-low.c
index c2511a5..9ddf959 100644
--- a/gdb/gdbserver/linux-s390-low.c
+++ b/gdb/gdbserver/linux-s390-low.c
@@ -1,7 +1,6 @@
/* GNU/Linux S/390 specific low level interface, for the remote server
for GDB.
- Copyright (C) 2001, 2002, 2005, 2006
- Free Software Foundation, Inc.
+ Copyright (C) 2001, 2002, 2005, 2006, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-sh-low.c b/gdb/gdbserver/linux-sh-low.c
index e3b5a33..8eef9ba 100644
--- a/gdb/gdbserver/linux-sh-low.c
+++ b/gdb/gdbserver/linux-sh-low.c
@@ -1,5 +1,5 @@
/* GNU/Linux/SH specific low level interface, for the remote server for GDB.
- Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2005
+ Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2007
Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/linux-x86-64-low.c b/gdb/gdbserver/linux-x86-64-low.c
index e067b9c..81c92fe 100644
--- a/gdb/gdbserver/linux-x86-64-low.c
+++ b/gdb/gdbserver/linux-x86-64-low.c
@@ -1,7 +1,6 @@
/* GNU/Linux/x86-64 specific low level interface, for the remote server
for GDB.
- Copyright (C) 2002, 2004, 2005, 2006
- Free Software Foundation, Inc.
+ Copyright (C) 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/mem-break.c b/gdb/gdbserver/mem-break.c
index 37fd455..eb3dad4 100644
--- a/gdb/gdbserver/mem-break.c
+++ b/gdb/gdbserver/mem-break.c
@@ -1,6 +1,5 @@
/* Memory breakpoint operations for the remote server for GDB.
- Copyright (C) 2002, 2003, 2005
- Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
Contributed by MontaVista Software.
diff --git a/gdb/gdbserver/mem-break.h b/gdb/gdbserver/mem-break.h
index 332d0e7..d04c659 100644
--- a/gdb/gdbserver/mem-break.h
+++ b/gdb/gdbserver/mem-break.h
@@ -1,6 +1,5 @@
/* Memory breakpoint interfaces for the remote server for GDB.
- Copyright (C) 2002, 2005
- Free Software Foundation, Inc.
+ Copyright (C) 2002, 2005, 2007 Free Software Foundation, Inc.
Contributed by MontaVista Software.
diff --git a/gdb/gdbserver/proc-service.c b/gdb/gdbserver/proc-service.c
index 99083f1..99118e8 100644
--- a/gdb/gdbserver/proc-service.c
+++ b/gdb/gdbserver/proc-service.c
@@ -1,6 +1,5 @@
/* libthread_db helper functions for the remote server for GDB.
- Copyright (C) 2002, 2004, 2005, 2006
- Free Software Foundation, Inc.
+ Copyright (C) 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
Contributed by MontaVista Software.
diff --git a/gdb/gdbserver/regcache.c b/gdb/gdbserver/regcache.c
index c8ea2ad..548ed0c 100644
--- a/gdb/gdbserver/regcache.c
+++ b/gdb/gdbserver/regcache.c
@@ -1,6 +1,5 @@
/* Register support routines for the remote server for GDB.
- Copyright (C) 2001, 2002, 2004, 2005
- Free Software Foundation, Inc.
+ Copyright (C) 2001, 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/regcache.h b/gdb/gdbserver/regcache.h
index ec8531e..bdf2caa 100644
--- a/gdb/gdbserver/regcache.h
+++ b/gdb/gdbserver/regcache.h
@@ -1,5 +1,5 @@
/* Register support routines for the remote server for GDB.
- Copyright (C) 2001, 2002 Free Software Foundation, Inc.
+ Copyright (C) 2001, 2002, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/remote-utils.c b/gdb/gdbserver/remote-utils.c
index 80c6343..7349705 100644
--- a/gdb/gdbserver/remote-utils.c
+++ b/gdb/gdbserver/remote-utils.c
@@ -1,7 +1,6 @@
/* Remote utility routines for the remote server for GDB.
- Copyright (C) 1986, 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
- 2002, 2003, 2004, 2005, 2006
- Free Software Foundation, Inc.
+ Copyright (C) 1986, 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
+ 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/server.c b/gdb/gdbserver/server.c
index 84d0d68..1f78cce 100644
--- a/gdb/gdbserver/server.c
+++ b/gdb/gdbserver/server.c
@@ -1,7 +1,6 @@
/* Main code for remote server for GDB.
- Copyright (C) 1989, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2002, 2003, 2004,
- 2005, 2006
- Free Software Foundation, Inc.
+ Copyright (C) 1989, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2002, 2003,
+ 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/server.h b/gdb/gdbserver/server.h
index e1fad45..ff5ef3f 100644
--- a/gdb/gdbserver/server.h
+++ b/gdb/gdbserver/server.h
@@ -1,7 +1,6 @@
/* Common definitions for remote server for GDB.
Copyright (C) 1993, 1995, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005,
- 2006
- Free Software Foundation, Inc.
+ 2006, 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/spu-low.c b/gdb/gdbserver/spu-low.c
index 024a052..a7b7a61 100644
--- a/gdb/gdbserver/spu-low.c
+++ b/gdb/gdbserver/spu-low.c
@@ -1,5 +1,5 @@
/* Low level interface to SPUs, for the remote server for GDB.
- Copyright (C) 2006 Free Software Foundation, Inc.
+ Copyright (C) 2006, 2007 Free Software Foundation, Inc.
Contributed by Ulrich Weigand <uweigand@de.ibm.com>.
diff --git a/gdb/gdbserver/target.c b/gdb/gdbserver/target.c
index 066690f..9acdb86 100644
--- a/gdb/gdbserver/target.c
+++ b/gdb/gdbserver/target.c
@@ -1,6 +1,5 @@
/* Target operations for the remote server for GDB.
- Copyright (C) 2002, 2004, 2005
- Free Software Foundation, Inc.
+ Copyright (C) 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
Contributed by MontaVista Software.
diff --git a/gdb/gdbserver/target.h b/gdb/gdbserver/target.h
index b2f9b09..17137dc 100644
--- a/gdb/gdbserver/target.h
+++ b/gdb/gdbserver/target.h
@@ -1,6 +1,5 @@
/* Target operations for the remote server for GDB.
- Copyright (C) 2002, 2003, 2004, 2005
- Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
Contributed by MontaVista Software.
diff --git a/gdb/gdbserver/thread-db.c b/gdb/gdbserver/thread-db.c
index e1f0653d..ec70400 100644
--- a/gdb/gdbserver/thread-db.c
+++ b/gdb/gdbserver/thread-db.c
@@ -1,6 +1,5 @@
/* Thread management interface, for the remote server for GDB.
- Copyright (C) 2002, 2004, 2005, 2006
- Free Software Foundation, Inc.
+ Copyright (C) 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
Contributed by MontaVista Software.
diff --git a/gdb/gdbserver/utils.c b/gdb/gdbserver/utils.c
index ec7ed7c..2130d17 100644
--- a/gdb/gdbserver/utils.c
+++ b/gdb/gdbserver/utils.c
@@ -1,6 +1,6 @@
/* General utility routines for the remote server for GDB.
- Copyright (C) 1986, 1989, 1993, 1995, 1996, 1997, 1999, 2000, 2002, 2003
- Free Software Foundation, Inc.
+ Copyright (C) 1986, 1989, 1993, 1995, 1996, 1997, 1999, 2000, 2002, 2003,
+ 2007 Free Software Foundation, Inc.
This file is part of GDB.
diff --git a/gdb/gdbserver/win32-i386-low.c b/gdb/gdbserver/win32-i386-low.c
index ee2d2d1..817eb37 100644
--- a/gdb/gdbserver/win32-i386-low.c
+++ b/gdb/gdbserver/win32-i386-low.c
@@ -1,6 +1,5 @@
/* Low level interface to Windows debugging, for gdbserver.
- Copyright (C) 2006
- Free Software Foundation, Inc.
+ Copyright (C) 2006, 2007 Free Software Foundation, Inc.
Contributed by Leo Zayas. Based on "win32-nat.c" from GDB.