Skip to content
This repository was archived by the owner on Oct 3, 2021. It is now read-only.

Commit 50bbb25

Browse files
authored
Merge pull request #1203 from sosy-lab/license-pthread
Add license declarations to all files in c/pthread
2 parents c290f49 + 95e2a1b commit 50bbb25

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+657
-5
lines changed

.reuse/dep5

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Files:
2222
c/loops
2323
c/ntdrivers
2424
c/ntdrivers-simplified
25-
c/pthread
2625
c/pthread-ext
2726
c/seq-pthread
2827
c/systemc

c/pthread/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!--
2+
This file is part of the SV-Benchmarks collection of verification tasks:
3+
https://github.com/sosy-lab/sv-benchmarks
4+
5+
SPDX-FileCopyrightText: 2011-2020 The SV-Benchmarks community
6+
7+
SPDX-License-Identifier: Apache-2.0
8+
-->
9+
10+
Various small concurrent programs.
11+
12+
- `bigshot*`, `sigma*`, `singleton*`: Submitted by the CSeq project
13+
- `triangular*`: Submitted by the CPAchecker project
14+
- Remainder submitted by the ESBMC project.
15+
Some of these are described in https://doi.org/10.1145/1985793.1985839
16+
or https://dl.acm.org/doi/10.1145/1639622.1639631 (also cf. https://wiki.cs.byu.edu/vv-lab/concurrency-tool-comparison).
17+

c/pthread/README.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

c/pthread/bigshot_p.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// This file is part of the SV-Benchmarks collection of verification tasks:
2+
// https://github.com/sosy-lab/sv-benchmarks
3+
//
4+
// SPDX-FileCopyrightText: 2011-2020 The SV-Benchmarks community
5+
// SPDX-FileCopyrightText: The CSeq project
6+
//
7+
// SPDX-License-Identifier: Apache-2.0
8+
19
extern void abort(void);
210
#include <assert.h>
311
void reach_error() { assert(0); }

c/pthread/bigshot_p.i

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// This file is part of the SV-Benchmarks collection of verification tasks:
2+
// https://github.com/sosy-lab/sv-benchmarks
3+
//
4+
// SPDX-FileCopyrightText: 2011-2020 The SV-Benchmarks community
5+
// SPDX-FileCopyrightText: The CSeq project
6+
//
7+
// SPDX-License-Identifier: Apache-2.0
8+
19
extern void abort(void);
210

311
extern void __assert_fail (const char *__assertion, const char *__file,

c/pthread/bigshot_s.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// This file is part of the SV-Benchmarks collection of verification tasks:
2+
// https://github.com/sosy-lab/sv-benchmarks
3+
//
4+
// SPDX-FileCopyrightText: 2011-2020 The SV-Benchmarks community
5+
// SPDX-FileCopyrightText: The CSeq project
6+
//
7+
// SPDX-License-Identifier: Apache-2.0
8+
19
extern void abort(void);
210
#include <assert.h>
311
void reach_error() { assert(0); }

c/pthread/bigshot_s.i

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// This file is part of the SV-Benchmarks collection of verification tasks:
2+
// https://github.com/sosy-lab/sv-benchmarks
3+
//
4+
// SPDX-FileCopyrightText: 2011-2020 The SV-Benchmarks community
5+
// SPDX-FileCopyrightText: The CSeq project
6+
//
7+
// SPDX-License-Identifier: Apache-2.0
8+
19
extern void abort(void);
210

311
extern void __assert_fail (const char *__assertion, const char *__file,

c/pthread/bigshot_s2.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// This file is part of the SV-Benchmarks collection of verification tasks:
2+
// https://github.com/sosy-lab/sv-benchmarks
3+
//
4+
// SPDX-FileCopyrightText: 2011-2020 The SV-Benchmarks community
5+
// SPDX-FileCopyrightText: The CSeq project
6+
//
7+
// SPDX-License-Identifier: Apache-2.0
8+
19
extern void abort(void);
210
#include <assert.h>
311
void reach_error() { assert(0); }

c/pthread/bigshot_s2.i

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// This file is part of the SV-Benchmarks collection of verification tasks:
2+
// https://github.com/sosy-lab/sv-benchmarks
3+
//
4+
// SPDX-FileCopyrightText: 2011-2020 The SV-Benchmarks community
5+
// SPDX-FileCopyrightText: The CSeq project
6+
//
7+
// SPDX-License-Identifier: Apache-2.0
8+
19
extern void abort(void);
210

311
extern void __assert_fail (const char *__assertion, const char *__file,

c/pthread/fib_bench-1.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// This file is part of the SV-Benchmarks collection of verification tasks:
2+
// https://github.com/sosy-lab/sv-benchmarks
3+
//
4+
// SPDX-FileCopyrightText: 2011-2020 The SV-Benchmarks community
5+
// SPDX-FileCopyrightText: The ESBMC project
6+
//
7+
// SPDX-License-Identifier: Apache-2.0
8+
19
extern void abort(void);
210
#include <assert.h>
311
void reach_error() { assert(0); }

0 commit comments

Comments
 (0)