From 82f1cc287d8b85bf47e445ce48a80159410e805a Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Mon, 27 Feb 2023 13:40:20 +0100 Subject: [PATCH] Update copyright years to 2021-2023 --- include/ovni.h | 2 +- src/common.h | 2 +- src/emu/bay.c | 3 +++ src/emu/bay.h | 3 +++ src/emu/chan.c | 2 +- src/emu/chan.h | 2 +- src/emu/clkoff.c | 3 +++ src/emu/kernel/event.c | 3 +++ src/emu/kernel/kernel_priv.h | 2 +- src/emu/kernel/setup.c | 3 +++ src/emu/model_cpu.c | 3 +++ src/emu/model_pvt.c | 3 +++ src/emu/model_thread.c | 3 +++ src/emu/models.c | 2 +- src/emu/models.h | 2 +- src/emu/mux.c | 3 +++ src/emu/mux.h | 3 +++ src/emu/nanos6/event.c | 3 +++ src/emu/nanos6/nanos6_priv.h | 2 +- src/emu/nanos6/setup.c | 3 +++ src/emu/nodes/event.c | 3 +++ src/emu/nodes/nodes_priv.h | 2 +- src/emu/nodes/setup.c | 3 +++ src/emu/nosv/event.c | 3 +++ src/emu/nosv/nosv_priv.h | 2 +- src/emu/nosv/setup.c | 3 +++ src/emu/ovni/ovni_priv.h | 2 +- src/emu/ovni/setup.c | 3 +++ src/emu/ovniemu.c | 3 +++ src/emu/ovnisort.c | 2 +- src/emu/ovnisync.c | 2 +- src/emu/player.c | 3 +++ src/emu/pv/pcf.h | 2 +- src/emu/pv/prf.c | 3 +++ src/emu/pv/pvt.c | 3 +++ src/emu/task.c | 2 +- src/emu/task.h | 2 +- src/emu/value.h | 3 +++ src/include/compat.h | 2 +- src/include/heap.h | 8 ++++---- src/include/version.h | 2 +- src/rt/ovni.c | 2 +- test/emu/instr.c | 2 +- test/emu/instr.h | 2 +- test/emu/nanos6/blocking.c | 2 +- test/emu/nanos6/delayed-connect-ss.c | 2 +- test/emu/nanos6/instr_nanos6.h | 2 +- test/emu/nanos6/nested-tasks-bad.c | 2 +- test/emu/nanos6/nested-tasks.c | 2 +- test/emu/nanos6/ss-mismatch.c | 2 +- test/emu/nanos6/switch-same-type.c | 2 +- test/emu/nanos6/task-types.c | 2 +- test/emu/nosv/instr_nosv.h | 2 +- test/emu/nosv/mp-rank.c | 2 +- test/emu/nosv/nested-tasks-bad.c | 2 +- test/emu/nosv/nested-tasks.c | 2 +- test/emu/nosv/pause.c | 2 +- test/emu/nosv/switch-same-type.c | 2 +- test/emu/nosv/task-types.c | 2 +- test/emu/ovni/burst-stats.c | 2 +- test/emu/ovni/flush-overhead.c | 2 +- test/emu/ovni/instr_ovni.h | 2 +- test/emu/ovni/mp-simple.c | 2 +- test/emu/ovni/sort-first-and-full-ring.c | 2 +- test/emu/ovni/sort.c | 2 +- test/emu/ovni/version-bad.c | 2 +- test/emu/ovni/version-good.c | 2 +- test/rt/nanos6/if0.c | 2 +- test/rt/nanos6/nested-task.c | 2 +- test/rt/nanos6/sched-add.c | 2 +- test/rt/nanos6/several-tasks.c | 2 +- test/rt/nanos6/simple-task.c | 2 +- test/rt/nanos6/spawn-task-external-bad.c | 2 +- test/rt/nanos6/spawn-task-external.c | 2 +- test/rt/nanos6/spawn-task.c | 2 +- test/rt/nanos6/taskfor.c | 2 +- test/rt/nosv/attach.c | 2 +- test/rt/nosv/several-tasks.c | 2 +- test/rt/nosv/waitfor.c | 2 +- test/unit/bay-hash-speed.c | 3 +++ test/unit/bay.c | 3 +++ test/unit/cfg.c | 3 +++ test/unit/chan.c | 3 +++ test/unit/clkoff.c | 3 +++ test/unit/cpu.c | 3 +++ test/unit/loom.c | 3 +++ test/unit/mux.c | 3 +++ test/unit/prv.c | 3 +++ test/unit/stream.c | 3 +++ test/unit/thread.c | 3 +++ test/unit/unittest.h | 2 +- test/unit/value.c | 3 +++ test/unit/version.c | 3 +++ 93 files changed, 166 insertions(+), 61 deletions(-) diff --git a/include/ovni.h b/include/ovni.h index b7bcb47..d151395 100644 --- a/include/ovni.h +++ b/include/ovni.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: MIT */ #ifndef OVNI_H diff --git a/src/common.h b/src/common.h index 369c7d3..42b9caf 100644 --- a/src/common.h +++ b/src/common.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: MIT */ #ifndef COMMON_H diff --git a/src/emu/bay.c b/src/emu/bay.c index 3c2d348..e6177c2 100644 --- a/src/emu/bay.c +++ b/src/emu/bay.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + //#define ENABLE_DEBUG #include "bay.h" diff --git a/src/emu/bay.h b/src/emu/bay.h index dd22db8..ff89dab 100644 --- a/src/emu/bay.h +++ b/src/emu/bay.h @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #ifndef BAY_H #define BAY_H diff --git a/src/emu/chan.c b/src/emu/chan.c index 12a0bfa..b2a787e 100644 --- a/src/emu/chan.c +++ b/src/emu/chan.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ //#define ENABLE_DEBUG diff --git a/src/emu/chan.h b/src/emu/chan.h index da37036..e0e519b 100644 --- a/src/emu/chan.h +++ b/src/emu/chan.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef CHAN_H diff --git a/src/emu/clkoff.c b/src/emu/clkoff.c index 6b2c43c..3fbe47e 100644 --- a/src/emu/clkoff.c +++ b/src/emu/clkoff.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "clkoff.h" #include "common.h" diff --git a/src/emu/kernel/event.c b/src/emu/kernel/event.c index 90b0ebb..496c4b8 100644 --- a/src/emu/kernel/event.c +++ b/src/emu/kernel/event.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "kernel_priv.h" enum { PUSH = 1, POP = 2, IGN = 3 }; diff --git a/src/emu/kernel/kernel_priv.h b/src/emu/kernel/kernel_priv.h index 2eb62d7..7cc8d56 100644 --- a/src/emu/kernel/kernel_priv.h +++ b/src/emu/kernel/kernel_priv.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef KERNEL_PRIV_H diff --git a/src/emu/kernel/setup.c b/src/emu/kernel/setup.c index b933bb1..195385b 100644 --- a/src/emu/kernel/setup.c +++ b/src/emu/kernel/setup.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "kernel_priv.h" #include "emu_prv.h" diff --git a/src/emu/model_cpu.c b/src/emu/model_cpu.c index f326305..22a5d2d 100644 --- a/src/emu/model_cpu.c +++ b/src/emu/model_cpu.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "model_cpu.h" #include "model_thread.h" diff --git a/src/emu/model_pvt.c b/src/emu/model_pvt.c index 21b6267..f3f27ef 100644 --- a/src/emu/model_pvt.c +++ b/src/emu/model_pvt.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "model_pvt.h" static const char *pcf_suffix[TRACK_TH_MAX] = { diff --git a/src/emu/model_thread.c b/src/emu/model_thread.c index d2557c8..0259ca7 100644 --- a/src/emu/model_thread.c +++ b/src/emu/model_thread.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "model_thread.h" #include "model_pvt.h" diff --git a/src/emu/models.c b/src/emu/models.c index ffd639e..ac8116e 100644 --- a/src/emu/models.c +++ b/src/emu/models.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "models.h" diff --git a/src/emu/models.h b/src/emu/models.h index 9cd4ca5..eaf3972 100644 --- a/src/emu/models.h +++ b/src/emu/models.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef MODELS_H diff --git a/src/emu/mux.c b/src/emu/mux.c index 9a61563..474978f 100644 --- a/src/emu/mux.c +++ b/src/emu/mux.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + //#define ENABLE_DEBUG #include "mux.h" diff --git a/src/emu/mux.h b/src/emu/mux.h index 7685264..89aca52 100644 --- a/src/emu/mux.h +++ b/src/emu/mux.h @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #ifndef MUX_H #define MUX_H diff --git a/src/emu/nanos6/event.c b/src/emu/nanos6/event.c index ad8f6ab..405a452 100644 --- a/src/emu/nanos6/event.c +++ b/src/emu/nanos6/event.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "nanos6_priv.h" enum { PUSH = 1, POP = 2, IGN = 3 }; diff --git a/src/emu/nanos6/nanos6_priv.h b/src/emu/nanos6/nanos6_priv.h index 0bebc58..b75d05a 100644 --- a/src/emu/nanos6/nanos6_priv.h +++ b/src/emu/nanos6/nanos6_priv.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef NANOS6_PRIV_H diff --git a/src/emu/nanos6/setup.c b/src/emu/nanos6/setup.c index f35da85..0988867 100644 --- a/src/emu/nanos6/setup.c +++ b/src/emu/nanos6/setup.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "nanos6_priv.h" #include "emu_prv.h" diff --git a/src/emu/nodes/event.c b/src/emu/nodes/event.c index 787b2d7..af111d4 100644 --- a/src/emu/nodes/event.c +++ b/src/emu/nodes/event.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "nodes_priv.h" enum { PUSH = 1, POP = 2, IGN = 3 }; diff --git a/src/emu/nodes/nodes_priv.h b/src/emu/nodes/nodes_priv.h index 2f6a858..b9ea29b 100644 --- a/src/emu/nodes/nodes_priv.h +++ b/src/emu/nodes/nodes_priv.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef NODES_PRIV_H diff --git a/src/emu/nodes/setup.c b/src/emu/nodes/setup.c index 93e48f8..2bc7e42 100644 --- a/src/emu/nodes/setup.c +++ b/src/emu/nodes/setup.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "nodes_priv.h" #include "emu_prv.h" diff --git a/src/emu/nosv/event.c b/src/emu/nosv/event.c index fd85973..3b88d15 100644 --- a/src/emu/nosv/event.c +++ b/src/emu/nosv/event.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "nosv_priv.h" enum { PUSH = 1, POP = 2, IGN = 3 }; diff --git a/src/emu/nosv/nosv_priv.h b/src/emu/nosv/nosv_priv.h index 5f6403b..677ace4 100644 --- a/src/emu/nosv/nosv_priv.h +++ b/src/emu/nosv/nosv_priv.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef NOSV_PRIV_H diff --git a/src/emu/nosv/setup.c b/src/emu/nosv/setup.c index 9a0b6be..12eb06c 100644 --- a/src/emu/nosv/setup.c +++ b/src/emu/nosv/setup.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "nosv_priv.h" #include "emu_prv.h" diff --git a/src/emu/ovni/ovni_priv.h b/src/emu/ovni/ovni_priv.h index 28e3646..c5d2ccd 100644 --- a/src/emu/ovni/ovni_priv.h +++ b/src/emu/ovni/ovni_priv.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef OVNI_PRIV_H diff --git a/src/emu/ovni/setup.c b/src/emu/ovni/setup.c index 1c98f8e..ade7853 100644 --- a/src/emu/ovni/setup.c +++ b/src/emu/ovni/setup.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "ovni_priv.h" #include "emu_prv.h" diff --git a/src/emu/ovniemu.c b/src/emu/ovniemu.c index 41a6b54..37199ce 100644 --- a/src/emu/ovniemu.c +++ b/src/emu/ovniemu.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "emu.h" #include diff --git a/src/emu/ovnisort.c b/src/emu/ovnisort.c index 1ac3b37..12f8148 100644 --- a/src/emu/ovnisort.c +++ b/src/emu/ovnisort.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ /* This program is a really bad idea. It attempts to sort streams by using a diff --git a/src/emu/ovnisync.c b/src/emu/ovnisync.c index da78599..a129362 100644 --- a/src/emu/ovnisync.c +++ b/src/emu/ovnisync.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _POSIX_C_SOURCE 200809L diff --git a/src/emu/player.c b/src/emu/player.c index 513adcf..3161026 100644 --- a/src/emu/player.c +++ b/src/emu/player.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "player.h" #include "heap.h" diff --git a/src/emu/pv/pcf.h b/src/emu/pv/pcf.h index 4a3a7df..24967ce 100644 --- a/src/emu/pv/pcf.h +++ b/src/emu/pv/pcf.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2021 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef PCF_H diff --git a/src/emu/pv/prf.c b/src/emu/pv/prf.c index b92cf76..6eb473b 100644 --- a/src/emu/pv/prf.c +++ b/src/emu/pv/prf.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "prf.h" #include diff --git a/src/emu/pv/pvt.c b/src/emu/pv/pvt.c index bfba7de..94dc681 100644 --- a/src/emu/pv/pvt.c +++ b/src/emu/pv/pvt.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "pvt.h" int diff --git a/src/emu/task.c b/src/emu/task.c index bd12582..12b674e 100644 --- a/src/emu/task.c +++ b/src/emu/task.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "task.h" diff --git a/src/emu/task.h b/src/emu/task.h index 426b537..8eebe1d 100644 --- a/src/emu/task.h +++ b/src/emu/task.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2022-2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef TASK_H diff --git a/src/emu/value.h b/src/emu/value.h index 871f5c1..04f26da 100644 --- a/src/emu/value.h +++ b/src/emu/value.h @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #ifndef VALUE_H #define VALUE_H diff --git a/src/include/compat.h b/src/include/compat.h index 0485da2..94bf264 100644 --- a/src/include/compat.h +++ b/src/include/compat.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: MIT */ #ifndef COMPAT_H diff --git a/src/include/heap.h b/src/include/heap.h index 2e20599..a874fc6 100644 --- a/src/include/heap.h +++ b/src/include/heap.h @@ -1,9 +1,9 @@ -/* - * heap.h - basic heap with intrusive structures. - * Copyright (C) 2021 Barcelona Supercomputing Center (BSC) - * Author: David Alvarez +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ +/* Author: David Alvarez + * heap.h - basic heap with intrusive structures. */ + #ifndef HEAP_H #define HEAP_H diff --git a/src/include/version.h b/src/include/version.h index fe83328..1a3bd92 100644 --- a/src/include/version.h +++ b/src/include/version.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: MIT */ #define _GNU_SOURCE diff --git a/src/rt/ovni.c b/src/rt/ovni.c index c9fbb84..c8de7a4 100644 --- a/src/rt/ovni.c +++ b/src/rt/ovni.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: MIT */ #define _GNU_SOURCE diff --git a/test/emu/instr.c b/test/emu/instr.c index 079b777..575c413 100644 --- a/test/emu/instr.c +++ b/test/emu/instr.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr.h" diff --git a/test/emu/instr.h b/test/emu/instr.h index a4db867..4c80d29 100644 --- a/test/emu/instr.h +++ b/test/emu/instr.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef INSTR_H diff --git a/test/emu/nanos6/blocking.c b/test/emu/nanos6/blocking.c index d01598b..5187505 100644 --- a/test/emu/nanos6/blocking.c +++ b/test/emu/nanos6/blocking.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr_nanos6.h" diff --git a/test/emu/nanos6/delayed-connect-ss.c b/test/emu/nanos6/delayed-connect-ss.c index dd5f6db..3b1bf9b 100644 --- a/test/emu/nanos6/delayed-connect-ss.c +++ b/test/emu/nanos6/delayed-connect-ss.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr_nanos6.h" diff --git a/test/emu/nanos6/instr_nanos6.h b/test/emu/nanos6/instr_nanos6.h index 5ddc9d8..8a14e9f 100644 --- a/test/emu/nanos6/instr_nanos6.h +++ b/test/emu/nanos6/instr_nanos6.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef INSTR_NANOS6_H diff --git a/test/emu/nanos6/nested-tasks-bad.c b/test/emu/nanos6/nested-tasks-bad.c index 5956b13..6d28044 100644 --- a/test/emu/nanos6/nested-tasks-bad.c +++ b/test/emu/nanos6/nested-tasks-bad.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr_nanos6.h" diff --git a/test/emu/nanos6/nested-tasks.c b/test/emu/nanos6/nested-tasks.c index e07de27..c006cea 100644 --- a/test/emu/nanos6/nested-tasks.c +++ b/test/emu/nanos6/nested-tasks.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr_nanos6.h" diff --git a/test/emu/nanos6/ss-mismatch.c b/test/emu/nanos6/ss-mismatch.c index 75456fe..5d53f44 100644 --- a/test/emu/nanos6/ss-mismatch.c +++ b/test/emu/nanos6/ss-mismatch.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr_nanos6.h" diff --git a/test/emu/nanos6/switch-same-type.c b/test/emu/nanos6/switch-same-type.c index 1afe26d..98c6cc7 100644 --- a/test/emu/nanos6/switch-same-type.c +++ b/test/emu/nanos6/switch-same-type.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr_nanos6.h" diff --git a/test/emu/nanos6/task-types.c b/test/emu/nanos6/task-types.c index b9a813e..dab7727 100644 --- a/test/emu/nanos6/task-types.c +++ b/test/emu/nanos6/task-types.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr_nanos6.h" diff --git a/test/emu/nosv/instr_nosv.h b/test/emu/nosv/instr_nosv.h index 8f251bd..0046838 100644 --- a/test/emu/nosv/instr_nosv.h +++ b/test/emu/nosv/instr_nosv.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef INSTR_NOSV_H diff --git a/test/emu/nosv/mp-rank.c b/test/emu/nosv/mp-rank.c index 13b61f3..e99a896 100644 --- a/test/emu/nosv/mp-rank.c +++ b/test/emu/nosv/mp-rank.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _GNU_SOURCE diff --git a/test/emu/nosv/nested-tasks-bad.c b/test/emu/nosv/nested-tasks-bad.c index dfb6d8f..70dfcd9 100644 --- a/test/emu/nosv/nested-tasks-bad.c +++ b/test/emu/nosv/nested-tasks-bad.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr_nosv.h" diff --git a/test/emu/nosv/nested-tasks.c b/test/emu/nosv/nested-tasks.c index 5814a91..147337e 100644 --- a/test/emu/nosv/nested-tasks.c +++ b/test/emu/nosv/nested-tasks.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr_nosv.h" diff --git a/test/emu/nosv/pause.c b/test/emu/nosv/pause.c index 0847986..5cddf1f 100644 --- a/test/emu/nosv/pause.c +++ b/test/emu/nosv/pause.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr_nosv.h" diff --git a/test/emu/nosv/switch-same-type.c b/test/emu/nosv/switch-same-type.c index 3be69e7..92d581a 100644 --- a/test/emu/nosv/switch-same-type.c +++ b/test/emu/nosv/switch-same-type.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr_nosv.h" diff --git a/test/emu/nosv/task-types.c b/test/emu/nosv/task-types.c index 1555f2f..e76f2ae 100644 --- a/test/emu/nosv/task-types.c +++ b/test/emu/nosv/task-types.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr_nosv.h" diff --git a/test/emu/ovni/burst-stats.c b/test/emu/ovni/burst-stats.c index d4b505c..84c8cb4 100644 --- a/test/emu/ovni/burst-stats.c +++ b/test/emu/ovni/burst-stats.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _POSIX_C_SOURCE 200112L diff --git a/test/emu/ovni/flush-overhead.c b/test/emu/ovni/flush-overhead.c index 6bed3dd..f7539dc 100644 --- a/test/emu/ovni/flush-overhead.c +++ b/test/emu/ovni/flush-overhead.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _GNU_SOURCE diff --git a/test/emu/ovni/instr_ovni.h b/test/emu/ovni/instr_ovni.h index ab5bd29..9f6a07e 100644 --- a/test/emu/ovni/instr_ovni.h +++ b/test/emu/ovni/instr_ovni.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef INSTR_OVNI_H diff --git a/test/emu/ovni/mp-simple.c b/test/emu/ovni/mp-simple.c index 4007155..ed0de14 100644 --- a/test/emu/ovni/mp-simple.c +++ b/test/emu/ovni/mp-simple.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _GNU_SOURCE diff --git a/test/emu/ovni/sort-first-and-full-ring.c b/test/emu/ovni/sort-first-and-full-ring.c index 98e5769..2d7d06c 100644 --- a/test/emu/ovni/sort-first-and-full-ring.c +++ b/test/emu/ovni/sort-first-and-full-ring.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _POSIX_C_SOURCE 200112L diff --git a/test/emu/ovni/sort.c b/test/emu/ovni/sort.c index a9ee851..209e200 100644 --- a/test/emu/ovni/sort.c +++ b/test/emu/ovni/sort.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _POSIX_C_SOURCE 200112L diff --git a/test/emu/ovni/version-bad.c b/test/emu/ovni/version-bad.c index f49399c..2acd881 100644 --- a/test/emu/ovni/version-bad.c +++ b/test/emu/ovni/version-bad.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "ovni.h" diff --git a/test/emu/ovni/version-good.c b/test/emu/ovni/version-good.c index bf076a0..d160200 100644 --- a/test/emu/ovni/version-good.c +++ b/test/emu/ovni/version-good.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #include "instr_ovni.h" diff --git a/test/rt/nanos6/if0.c b/test/rt/nanos6/if0.c index 4f68ce7..7b35219 100644 --- a/test/rt/nanos6/if0.c +++ b/test/rt/nanos6/if0.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _GNU_SOURCE diff --git a/test/rt/nanos6/nested-task.c b/test/rt/nanos6/nested-task.c index 5fd90a9..63e2cb6 100644 --- a/test/rt/nanos6/nested-task.c +++ b/test/rt/nanos6/nested-task.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ int diff --git a/test/rt/nanos6/sched-add.c b/test/rt/nanos6/sched-add.c index 4747121..70efd0b 100644 --- a/test/rt/nanos6/sched-add.c +++ b/test/rt/nanos6/sched-add.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _POSIX_C_SOURCE 2 diff --git a/test/rt/nanos6/several-tasks.c b/test/rt/nanos6/several-tasks.c index 03a0705..a70222d 100644 --- a/test/rt/nanos6/several-tasks.c +++ b/test/rt/nanos6/several-tasks.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ int diff --git a/test/rt/nanos6/simple-task.c b/test/rt/nanos6/simple-task.c index b4cfcb0..589da8a 100644 --- a/test/rt/nanos6/simple-task.c +++ b/test/rt/nanos6/simple-task.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ int diff --git a/test/rt/nanos6/spawn-task-external-bad.c b/test/rt/nanos6/spawn-task-external-bad.c index e286d6d..f9d6691 100644 --- a/test/rt/nanos6/spawn-task-external-bad.c +++ b/test/rt/nanos6/spawn-task-external-bad.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ /* Spawn a task from an external thread that calls some nanos6 diff --git a/test/rt/nanos6/spawn-task-external.c b/test/rt/nanos6/spawn-task-external.c index 7e28368..a388727 100644 --- a/test/rt/nanos6/spawn-task-external.c +++ b/test/rt/nanos6/spawn-task-external.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ /* Spawn a task from an external thread that calls some nanos6 diff --git a/test/rt/nanos6/spawn-task.c b/test/rt/nanos6/spawn-task.c index 4a687e0..bff54f0 100644 --- a/test/rt/nanos6/spawn-task.c +++ b/test/rt/nanos6/spawn-task.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ /* Spawn a task from the main thread that calls some nanos6 diff --git a/test/rt/nanos6/taskfor.c b/test/rt/nanos6/taskfor.c index 6bb3acb..1dfd68b 100644 --- a/test/rt/nanos6/taskfor.c +++ b/test/rt/nanos6/taskfor.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _GNU_SOURCE diff --git a/test/rt/nosv/attach.c b/test/rt/nosv/attach.c index f5b05b7..0f63fc3 100644 --- a/test/rt/nosv/attach.c +++ b/test/rt/nosv/attach.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _DEFAULT_SOURCE diff --git a/test/rt/nosv/several-tasks.c b/test/rt/nosv/several-tasks.c index 32740db..20293d6 100644 --- a/test/rt/nosv/several-tasks.c +++ b/test/rt/nosv/several-tasks.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _DEFAULT_SOURCE diff --git a/test/rt/nosv/waitfor.c b/test/rt/nosv/waitfor.c index e5520eb..3758d87 100644 --- a/test/rt/nosv/waitfor.c +++ b/test/rt/nosv/waitfor.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _DEFAULT_SOURCE diff --git a/test/unit/bay-hash-speed.c b/test/unit/bay-hash-speed.c index 469275a..942f47c 100644 --- a/test/unit/bay-hash-speed.c +++ b/test/unit/bay-hash-speed.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #define _POSIX_C_SOURCE 200112L #include "emu/bay.h" diff --git a/test/unit/bay.c b/test/unit/bay.c index 2030462..9dd6755 100644 --- a/test/unit/bay.c +++ b/test/unit/bay.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "emu/bay.h" #include "common.h" diff --git a/test/unit/cfg.c b/test/unit/cfg.c index dfe297c..b1933b4 100644 --- a/test/unit/cfg.c +++ b/test/unit/cfg.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #define _GNU_SOURCE #include "emu/pv/cfg.h" diff --git a/test/unit/chan.c b/test/unit/chan.c index ab49a98..d79860e 100644 --- a/test/unit/chan.c +++ b/test/unit/chan.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "emu/chan.h" #include "common.h" diff --git a/test/unit/clkoff.c b/test/unit/clkoff.c index 3536822..cf0e6b5 100644 --- a/test/unit/clkoff.c +++ b/test/unit/clkoff.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #define _POSIX_C_SOURCE 200809L #include "emu/clkoff.h" diff --git a/test/unit/cpu.c b/test/unit/cpu.c index ca5a495..ee41f88 100644 --- a/test/unit/cpu.c +++ b/test/unit/cpu.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "emu/cpu.h" #include "emu/loom.h" #include "common.h" diff --git a/test/unit/loom.c b/test/unit/loom.c index 1d3be05..482fd3c 100644 --- a/test/unit/loom.c +++ b/test/unit/loom.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "emu/loom.h" #include "emu/cpu.h" #include "emu/proc.h" diff --git a/test/unit/mux.c b/test/unit/mux.c index b1372ed..5891535 100644 --- a/test/unit/mux.c +++ b/test/unit/mux.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "emu/mux.h" #include "common.h" diff --git a/test/unit/prv.c b/test/unit/prv.c index 5f52539..810cb6c 100644 --- a/test/unit/prv.c +++ b/test/unit/prv.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #define _GNU_SOURCE #include "unittest.h" diff --git a/test/unit/stream.c b/test/unit/stream.c index a91c7a4..7b89b6d 100644 --- a/test/unit/stream.c +++ b/test/unit/stream.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #define _GNU_SOURCE #include "emu/emu.h" diff --git a/test/unit/thread.c b/test/unit/thread.c index 1bbecc2..c27be1b 100644 --- a/test/unit/thread.c +++ b/test/unit/thread.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "unittest.h" #include "emu/thread.h" diff --git a/test/unit/unittest.h b/test/unit/unittest.h index 165cb64..ca70440 100644 --- a/test/unit/unittest.h +++ b/test/unit/unittest.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef UNITTEST_H diff --git a/test/unit/value.c b/test/unit/value.c index c93ff0a..c6738c7 100644 --- a/test/unit/value.c +++ b/test/unit/value.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "emu/value.h" #include "common.h" diff --git a/test/unit/version.c b/test/unit/version.c index 01d1542..9b411b0 100644 --- a/test/unit/version.c +++ b/test/unit/version.c @@ -1,3 +1,6 @@ +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) + * SPDX-License-Identifier: GPL-3.0-or-later */ + #include "version.h" struct testcase {