Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions examples/try_lock_a_bunch.cpp
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 2 additions & 0 deletions examples/try_lock_until_success.cpp
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 2 additions & 0 deletions include/beman/timed_lock_alg/mutex.hpp
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 2 additions & 0 deletions papers/generate_html.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading