-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathNOTICE
More file actions
56 lines (39 loc) · 2.13 KB
/
NOTICE
File metadata and controls
56 lines (39 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Notices for Eclipse Safe Open Vehicle Core
This content is produced and maintained by the Eclipse Safe Open Vehicle Core project.
* Project home: https://projects.eclipse.org/projects/automotive.score
## Trademarks
Eclipse, and the Eclipse Logo are registered trademarks of the Eclipse Foundation.
## Copyright
All content is the property of the respective authors or their employers.
For more information regarding authorship of content, please consult the
listed source code repository logs.
## Declared Project Licenses
This program and the accompanying materials are made available under the terms
of the Apache License Version 2.0 which is available at
https://www.apache.org/licenses/LICENSE-2.0.
SPDX-License-Identifier: Apache-2.0
## Cryptography
Content may contain encryption software. The country in which you are currently
may have restrictions on the import, possession, and use, and/or re-export to
another country, of encryption software. BEFORE using any encryption software,
please check the country's laws, regulations and policies concerning the import,
possession, or use, and re-export of encryption software, to see if this is
permitted.
## score::cpp::jthread
The implementation of score:cpp:jthread is based on std::thread from LLVM libc++ [1]
with the following modifications:
* Removed the LLVM Threading Support API to simplify the implementation.
https://libcxx.llvm.org/DesignDocs/ThreadingSupportAPI.html
* Refactored the code according to S-CORE coding guidelines
* Added a constructor to let clients configure the stack size
* Implemented additional tests
LLVM libc++ is provided under the Apache License v2.0 with LLVM Exceptions.
The license text can be found in licenses/llvm-libcxx.txt.
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
[1] https://github.com/llvm/llvm-project/tree/main/libcxx