From e515dc7e3bf34697fc3f78bba009705319728e61 Mon Sep 17 00:00:00 2001 From: Edward Nolan Date: Sun, 24 May 2026 22:55:57 -0400 Subject: [PATCH] Add some missing SPDX-License-Identifiers --- examples/try_lock_a_bunch.cpp | 2 ++ examples/try_lock_until_success.cpp | 2 ++ include/beman/timed_lock_alg/mutex.hpp | 2 ++ papers/generate_html.sh | 2 ++ 4 files changed, 8 insertions(+) diff --git a/examples/try_lock_a_bunch.cpp b/examples/try_lock_a_bunch.cpp index d3ab331..5897a3d 100644 --- a/examples/try_lock_a_bunch.cpp +++ b/examples/try_lock_a_bunch.cpp @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + /* * A simple example with 30 timed mutexes where one is locked * for 40 milliseconds before being released. diff --git a/examples/try_lock_until_success.cpp b/examples/try_lock_until_success.cpp index 9e880ff..d25b88b 100644 --- a/examples/try_lock_until_success.cpp +++ b/examples/try_lock_until_success.cpp @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + /* * A simple example with 30 timed mutexes where one is locked * for 40 milliseconds before being released. diff --git a/include/beman/timed_lock_alg/mutex.hpp b/include/beman/timed_lock_alg/mutex.hpp index 60329d7..46f8aa5 100644 --- a/include/beman/timed_lock_alg/mutex.hpp +++ b/include/beman/timed_lock_alg/mutex.hpp @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + #ifndef BEMAN_TIMED_LOCK_ALG_MUTEX_HPP #define BEMAN_TIMED_LOCK_ALG_MUTEX_HPP diff --git a/papers/generate_html.sh b/papers/generate_html.sh index ef8d90a..db8389b 100755 --- a/papers/generate_html.sh +++ b/papers/generate_html.sh @@ -1,5 +1,7 @@ #!/bin/bash +# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + if (( $# != 1 )); then echo "USAGE: $0 proposal" >&2 exit 1