aboutsummaryrefslogtreecommitdiff
path: root/sim/bpf
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@adacore.com>2023-01-01 16:49:04 +0400
committerJoel Brobecker <brobecker@adacore.com>2023-01-01 17:01:16 +0400
commit213516ef315dc1785e4990ef0fc011abedb38cc0 (patch)
tree9d6787681e8ad86d05631234d5d7f71942ef082b /sim/bpf
parente4661570ead7be521c9d693f188b0944d7b8c78c (diff)
downloadgdb-213516ef315dc1785e4990ef0fc011abedb38cc0.zip
gdb-213516ef315dc1785e4990ef0fc011abedb38cc0.tar.gz
gdb-213516ef315dc1785e4990ef0fc011abedb38cc0.tar.bz2
Update copyright year range in header of all files managed by GDB
This commit is the result of running the gdb/copyright.py script, which automated the update of the copyright year range for all source files managed by the GDB project to be updated to include year 2023.
Diffstat (limited to 'sim/bpf')
-rw-r--r--sim/bpf/Makefile.in2
-rw-r--r--sim/bpf/arch.c2
-rw-r--r--sim/bpf/arch.h2
-rw-r--r--sim/bpf/bpf-helpers.c2
-rw-r--r--sim/bpf/bpf-helpers.def2
-rw-r--r--sim/bpf/bpf-helpers.h2
-rw-r--r--sim/bpf/bpf-sim.h2
-rw-r--r--sim/bpf/bpf.c2
-rw-r--r--sim/bpf/cpu.c2
-rw-r--r--sim/bpf/cpu.h2
-rw-r--r--sim/bpf/cpuall.h2
-rw-r--r--sim/bpf/decode-be.c2
-rw-r--r--sim/bpf/decode-be.h2
-rw-r--r--sim/bpf/decode-le.c2
-rw-r--r--sim/bpf/decode-le.h2
-rw-r--r--sim/bpf/decode.h2
-rw-r--r--sim/bpf/defs-be.h2
-rw-r--r--sim/bpf/defs-le.h2
-rw-r--r--sim/bpf/eng.h2
-rw-r--r--sim/bpf/local.mk2
-rw-r--r--sim/bpf/mloop.in2
-rw-r--r--sim/bpf/sem-be.c2
-rw-r--r--sim/bpf/sem-le.c2
-rw-r--r--sim/bpf/sim-if.c2
-rw-r--r--sim/bpf/sim-main.h2
-rw-r--r--sim/bpf/traps.c2
26 files changed, 26 insertions, 26 deletions
diff --git a/sim/bpf/Makefile.in b/sim/bpf/Makefile.in
index 3fa3b67..7a17de8 100644
--- a/sim/bpf/Makefile.in
+++ b/sim/bpf/Makefile.in
@@ -1,5 +1,5 @@
# Makefile template for configure for the eBPF simulator
-# Copyright (C) 2020-2022 Free Software Foundation, Inc.
+# Copyright (C) 2020-2023 Free Software Foundation, Inc.
#
# This file is part of GDB, the GNU debugger.
#
diff --git a/sim/bpf/arch.c b/sim/bpf/arch.c
index 48134a7..95a8dba 100644
--- a/sim/bpf/arch.c
+++ b/sim/bpf/arch.c
@@ -2,7 +2,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN.
-Copyright (C) 1996-2022 Free Software Foundation, Inc.
+Copyright (C) 1996-2023 Free Software Foundation, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/arch.h b/sim/bpf/arch.h
index 6938eb2..a439570 100644
--- a/sim/bpf/arch.h
+++ b/sim/bpf/arch.h
@@ -2,7 +2,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN.
-Copyright (C) 1996-2022 Free Software Foundation, Inc.
+Copyright (C) 1996-2023 Free Software Foundation, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/bpf-helpers.c b/sim/bpf/bpf-helpers.c
index 16c75c1..4dc7eca 100644
--- a/sim/bpf/bpf-helpers.c
+++ b/sim/bpf/bpf-helpers.c
@@ -1,5 +1,5 @@
/* Emulation of eBPF helpers.
- Copyright (C) 2020-2022 Free Software Foundation, Inc.
+ Copyright (C) 2020-2023 Free Software Foundation, Inc.
This file is part of GDB, the GNU debugger.
diff --git a/sim/bpf/bpf-helpers.def b/sim/bpf/bpf-helpers.def
index 7024822..044aa22 100644
--- a/sim/bpf/bpf-helpers.def
+++ b/sim/bpf/bpf-helpers.def
@@ -1,5 +1,5 @@
/* BPF helpers database.
- Copyright (C) 2019-2022 Free Software Foundation, Inc.
+ Copyright (C) 2019-2023 Free Software Foundation, Inc.
This file is part of the GNU simulator.
diff --git a/sim/bpf/bpf-helpers.h b/sim/bpf/bpf-helpers.h
index a0519ba..9c9e2a5 100644
--- a/sim/bpf/bpf-helpers.h
+++ b/sim/bpf/bpf-helpers.h
@@ -1,5 +1,5 @@
/* Emulation of eBPF helpers. Interface.
- Copyright (C) 2020-2022 Free Software Foundation, Inc.
+ Copyright (C) 2020-2023 Free Software Foundation, Inc.
This file is part of GDB, the GNU debugger.
diff --git a/sim/bpf/bpf-sim.h b/sim/bpf/bpf-sim.h
index 1b63ed9..b58173c 100644
--- a/sim/bpf/bpf-sim.h
+++ b/sim/bpf/bpf-sim.h
@@ -1,5 +1,5 @@
/* eBPF simulator support code header
- Copyright (C) 2020-2022 Free Software Foundation, Inc.
+ Copyright (C) 2020-2023 Free Software Foundation, Inc.
This file is part of GDB, the GNU debugger.
diff --git a/sim/bpf/bpf.c b/sim/bpf/bpf.c
index c3ba0e0..212952a 100644
--- a/sim/bpf/bpf.c
+++ b/sim/bpf/bpf.c
@@ -1,5 +1,5 @@
/* eBPF simulator support code
- Copyright (C) 2020-2022 Free Software Foundation, Inc.
+ Copyright (C) 2020-2023 Free Software Foundation, Inc.
This file is part of GDB, the GNU debugger.
diff --git a/sim/bpf/cpu.c b/sim/bpf/cpu.c
index db37cf0..126aeb1 100644
--- a/sim/bpf/cpu.c
+++ b/sim/bpf/cpu.c
@@ -2,7 +2,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN.
-Copyright (C) 1996-2022 Free Software Foundation, Inc.
+Copyright (C) 1996-2023 Free Software Foundation, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/cpu.h b/sim/bpf/cpu.h
index fb5344e..d30da6c 100644
--- a/sim/bpf/cpu.h
+++ b/sim/bpf/cpu.h
@@ -2,7 +2,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN.
-Copyright (C) 1996-2022 Free Software Foundation, Inc.
+Copyright (C) 1996-2023 Free Software Foundation, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/cpuall.h b/sim/bpf/cpuall.h
index 1a54a7e..cb36d46 100644
--- a/sim/bpf/cpuall.h
+++ b/sim/bpf/cpuall.h
@@ -2,7 +2,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN.
-Copyright (C) 1996-2022 Free Software Foundation, Inc.
+Copyright (C) 1996-2023 Free Software Foundation, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/decode-be.c b/sim/bpf/decode-be.c
index e18c957..8037900 100644
--- a/sim/bpf/decode-be.c
+++ b/sim/bpf/decode-be.c
@@ -2,7 +2,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN.
-Copyright (C) 1996-2022 Free Software Foundation, Inc.
+Copyright (C) 1996-2023 Free Software Foundation, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/decode-be.h b/sim/bpf/decode-be.h
index fd08cd4..39a3759 100644
--- a/sim/bpf/decode-be.h
+++ b/sim/bpf/decode-be.h
@@ -2,7 +2,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN.
-Copyright (C) 1996-2022 Free Software Foundation, Inc.
+Copyright (C) 1996-2023 Free Software Foundation, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/decode-le.c b/sim/bpf/decode-le.c
index ff5bb3c..e18ae2e 100644
--- a/sim/bpf/decode-le.c
+++ b/sim/bpf/decode-le.c
@@ -2,7 +2,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN.
-Copyright (C) 1996-2022 Free Software Foundation, Inc.
+Copyright (C) 1996-2023 Free Software Foundation, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/decode-le.h b/sim/bpf/decode-le.h
index 080496a..13c4e34 100644
--- a/sim/bpf/decode-le.h
+++ b/sim/bpf/decode-le.h
@@ -2,7 +2,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN.
-Copyright (C) 1996-2022 Free Software Foundation, Inc.
+Copyright (C) 1996-2023 Free Software Foundation, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/decode.h b/sim/bpf/decode.h
index e8f923d..3cb13c0 100644
--- a/sim/bpf/decode.h
+++ b/sim/bpf/decode.h
@@ -1,5 +1,5 @@
/* Decode declarations.
- Copyright (C) 2020-2022 Free Software Foundation, Inc.
+ Copyright (C) 2020-2023 Free Software Foundation, Inc.
Contributed by Oracle, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/defs-be.h b/sim/bpf/defs-be.h
index 4508457..a4db0b7 100644
--- a/sim/bpf/defs-be.h
+++ b/sim/bpf/defs-be.h
@@ -2,7 +2,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN.
-Copyright (C) 1996-2022 Free Software Foundation, Inc.
+Copyright (C) 1996-2023 Free Software Foundation, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/defs-le.h b/sim/bpf/defs-le.h
index 3a36d57..bce5ca4 100644
--- a/sim/bpf/defs-le.h
+++ b/sim/bpf/defs-le.h
@@ -2,7 +2,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN.
-Copyright (C) 1996-2022 Free Software Foundation, Inc.
+Copyright (C) 1996-2023 Free Software Foundation, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/eng.h b/sim/bpf/eng.h
index c7aaf2d..0a3363f 100644
--- a/sim/bpf/eng.h
+++ b/sim/bpf/eng.h
@@ -1,5 +1,5 @@
/* Engine declarations.
- Copyright (C) 2020-2022 Free Software Foundation, Inc.
+ Copyright (C) 2020-2023 Free Software Foundation, Inc.
Contributed by Oracle, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/local.mk b/sim/bpf/local.mk
index b855db3..7382f61 100644
--- a/sim/bpf/local.mk
+++ b/sim/bpf/local.mk
@@ -1,6 +1,6 @@
## See sim/Makefile.am
##
-## Copyright (C) 2020-2022 Free Software Foundation, Inc.
+## Copyright (C) 2020-2023 Free Software Foundation, Inc.
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
diff --git a/sim/bpf/mloop.in b/sim/bpf/mloop.in
index 885beb0..4ec5d29 100644
--- a/sim/bpf/mloop.in
+++ b/sim/bpf/mloop.in
@@ -1,6 +1,6 @@
# Simulator main loop for eBPF. -*- C -*-
#
-# Copyright (C) 2020-2022 Free Software Foundation, Inc.
+# Copyright (C) 2020-2023 Free Software Foundation, Inc.
#
# This file is part of the GNU Simulators.
#
diff --git a/sim/bpf/sem-be.c b/sim/bpf/sem-be.c
index 41a9ec1..7df94cf 100644
--- a/sim/bpf/sem-be.c
+++ b/sim/bpf/sem-be.c
@@ -2,7 +2,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN.
-Copyright (C) 1996-2022 Free Software Foundation, Inc.
+Copyright (C) 1996-2023 Free Software Foundation, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/sem-le.c b/sim/bpf/sem-le.c
index 95230e8..acf805e 100644
--- a/sim/bpf/sem-le.c
+++ b/sim/bpf/sem-le.c
@@ -2,7 +2,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN.
-Copyright (C) 1996-2022 Free Software Foundation, Inc.
+Copyright (C) 1996-2023 Free Software Foundation, Inc.
This file is part of the GNU simulators.
diff --git a/sim/bpf/sim-if.c b/sim/bpf/sim-if.c
index 4c9aa83..1a3452f 100644
--- a/sim/bpf/sim-if.c
+++ b/sim/bpf/sim-if.c
@@ -1,5 +1,5 @@
/* Main simulator entry points specific to the eBPF.
- Copyright (C) 2020-2022 Free Software Foundation, Inc.
+ Copyright (C) 2020-2023 Free Software Foundation, Inc.
This file is part of GDB, the GNU debugger.
diff --git a/sim/bpf/sim-main.h b/sim/bpf/sim-main.h
index 6529b6e..812ab7e 100644
--- a/sim/bpf/sim-main.h
+++ b/sim/bpf/sim-main.h
@@ -1,5 +1,5 @@
/* eBPF simulator main header
- Copyright (C) 2020-2022 Free Software Foundation, Inc.
+ Copyright (C) 2020-2023 Free Software Foundation, Inc.
This file is part of GDB, the GNU debugger.
diff --git a/sim/bpf/traps.c b/sim/bpf/traps.c
index 73d5736..03101af 100644
--- a/sim/bpf/traps.c
+++ b/sim/bpf/traps.c
@@ -1,5 +1,5 @@
/* Trap handlers for eBPF.
- Copyright (C) 2020-2022 Free Software Foundation, Inc.
+ Copyright (C) 2020-2023 Free Software Foundation, Inc.
This file is part of GDB, the GNU debugger.