summaryrefslogtreecommitdiff
path: root/utility/rtos_compatibility_layers
diff options
context:
space:
mode:
Diffstat (limited to 'utility/rtos_compatibility_layers')
-rw-r--r--utility/rtos_compatibility_layers/OSEK/demo_osek.c11
-rw-r--r--utility/rtos_compatibility_layers/posix/posix_demo.c11
-rw-r--r--utility/rtos_compatibility_layers/posix/posix_signal_nested_test.c11
-rw-r--r--utility/rtos_compatibility_layers/posix/posix_signal_resume_thread_test.c11
-rw-r--r--utility/rtos_compatibility_layers/posix/posix_signal_self_send_test.c11
-rw-r--r--utility/rtos_compatibility_layers/posix/posix_signal_sigmask_test.c11
-rw-r--r--utility/rtos_compatibility_layers/posix/posix_signal_sigwait_test.c11
-rw-r--r--utility/rtos_compatibility_layers/posix/posix_signal_suspended_thread_test.c11
8 files changed, 88 insertions, 0 deletions
diff --git a/utility/rtos_compatibility_layers/OSEK/demo_osek.c b/utility/rtos_compatibility_layers/OSEK/demo_osek.c
index 2e104d31..f4d23f42 100644
--- a/utility/rtos_compatibility_layers/OSEK/demo_osek.c
+++ b/utility/rtos_compatibility_layers/OSEK/demo_osek.c
@@ -1,3 +1,14 @@
+/***************************************************************************/
+/* Copyright (c) 2024 Microsoft Corporation */
+/* Copyright (c) 2026 Eclipse ThreadX contributors */
+/* */
+/* This program and the accompanying materials are made available under */
+/* the terms of the MIT License which is available at */
+/* https://opensource.org/licenses/MIT. */
+/* */
+/* SPDX-License-Identifier: MIT */
+/***************************************************************************/
+
#include <os.h>
diff --git a/utility/rtos_compatibility_layers/posix/posix_demo.c b/utility/rtos_compatibility_layers/posix/posix_demo.c
index 7adeb9c3..e8ec950c 100644
--- a/utility/rtos_compatibility_layers/posix/posix_demo.c
+++ b/utility/rtos_compatibility_layers/posix/posix_demo.c
@@ -1,3 +1,14 @@
+/***************************************************************************/
+/* Copyright (c) 2024 Microsoft Corporation */
+/* Copyright (c) 2026 Eclipse ThreadX contributors */
+/* */
+/* This program and the accompanying materials are made available under */
+/* the terms of the MIT License which is available at */
+/* https://opensource.org/licenses/MIT. */
+/* */
+/* SPDX-License-Identifier: MIT */
+/***************************************************************************/
+
/* This is a small demo of the POSIX Compliancy Wrapper for the high-performance ThreadX kernel. */
/* It includes examples of six pthreads of different priorities, using a message queue, semaphore and mutex. */
diff --git a/utility/rtos_compatibility_layers/posix/posix_signal_nested_test.c b/utility/rtos_compatibility_layers/posix/posix_signal_nested_test.c
index 6f5b6478..3c183968 100644
--- a/utility/rtos_compatibility_layers/posix/posix_signal_nested_test.c
+++ b/utility/rtos_compatibility_layers/posix/posix_signal_nested_test.c
@@ -1,3 +1,14 @@
+/***************************************************************************/
+/* Copyright (c) 2024 Microsoft Corporation */
+/* Copyright (c) 2026 Eclipse ThreadX contributors */
+/* */
+/* This program and the accompanying materials are made available under */
+/* the terms of the MIT License which is available at */
+/* https://opensource.org/licenses/MIT. */
+/* */
+/* SPDX-License-Identifier: MIT */
+/***************************************************************************/
+
/* Simple nested-signaling test. */
#include "pthread.h"
diff --git a/utility/rtos_compatibility_layers/posix/posix_signal_resume_thread_test.c b/utility/rtos_compatibility_layers/posix/posix_signal_resume_thread_test.c
index 90878158..c6dc8c6c 100644
--- a/utility/rtos_compatibility_layers/posix/posix_signal_resume_thread_test.c
+++ b/utility/rtos_compatibility_layers/posix/posix_signal_resume_thread_test.c
@@ -1,3 +1,14 @@
+/***************************************************************************/
+/* Copyright (c) 2024 Microsoft Corporation */
+/* Copyright (c) 2026 Eclipse ThreadX contributors */
+/* */
+/* This program and the accompanying materials are made available under */
+/* the terms of the MIT License which is available at */
+/* https://opensource.org/licenses/MIT. */
+/* */
+/* SPDX-License-Identifier: MIT */
+/***************************************************************************/
+
/* Simple resume from signal handler test. */
#include "pthread.h"
diff --git a/utility/rtos_compatibility_layers/posix/posix_signal_self_send_test.c b/utility/rtos_compatibility_layers/posix/posix_signal_self_send_test.c
index bbeb419f..5847029c 100644
--- a/utility/rtos_compatibility_layers/posix/posix_signal_self_send_test.c
+++ b/utility/rtos_compatibility_layers/posix/posix_signal_self_send_test.c
@@ -1,3 +1,14 @@
+/***************************************************************************/
+/* Copyright (c) 2024 Microsoft Corporation */
+/* Copyright (c) 2026 Eclipse ThreadX contributors */
+/* */
+/* This program and the accompanying materials are made available under */
+/* the terms of the MIT License which is available at */
+/* https://opensource.org/licenses/MIT. */
+/* */
+/* SPDX-License-Identifier: MIT */
+/***************************************************************************/
+
/* Simple self-signaling test. */
#include "pthread.h"
diff --git a/utility/rtos_compatibility_layers/posix/posix_signal_sigmask_test.c b/utility/rtos_compatibility_layers/posix/posix_signal_sigmask_test.c
index 1f9c690b..e9404d25 100644
--- a/utility/rtos_compatibility_layers/posix/posix_signal_sigmask_test.c
+++ b/utility/rtos_compatibility_layers/posix/posix_signal_sigmask_test.c
@@ -1,3 +1,14 @@
+/***************************************************************************/
+/* Copyright (c) 2024 Microsoft Corporation */
+/* Copyright (c) 2026 Eclipse ThreadX contributors */
+/* */
+/* This program and the accompanying materials are made available under */
+/* the terms of the MIT License which is available at */
+/* https://opensource.org/licenses/MIT. */
+/* */
+/* SPDX-License-Identifier: MIT */
+/***************************************************************************/
+
/* Simple signal sigmask test. */
#include "pthread.h"
diff --git a/utility/rtos_compatibility_layers/posix/posix_signal_sigwait_test.c b/utility/rtos_compatibility_layers/posix/posix_signal_sigwait_test.c
index aa459735..523736fc 100644
--- a/utility/rtos_compatibility_layers/posix/posix_signal_sigwait_test.c
+++ b/utility/rtos_compatibility_layers/posix/posix_signal_sigwait_test.c
@@ -1,3 +1,14 @@
+/***************************************************************************/
+/* Copyright (c) 2024 Microsoft Corporation */
+/* Copyright (c) 2026 Eclipse ThreadX contributors */
+/* */
+/* This program and the accompanying materials are made available under */
+/* the terms of the MIT License which is available at */
+/* https://opensource.org/licenses/MIT. */
+/* */
+/* SPDX-License-Identifier: MIT */
+/***************************************************************************/
+
/* Simple signal sigwait test. */
#include "pthread.h"
diff --git a/utility/rtos_compatibility_layers/posix/posix_signal_suspended_thread_test.c b/utility/rtos_compatibility_layers/posix/posix_signal_suspended_thread_test.c
index 40d11eea..ad0e33b2 100644
--- a/utility/rtos_compatibility_layers/posix/posix_signal_suspended_thread_test.c
+++ b/utility/rtos_compatibility_layers/posix/posix_signal_suspended_thread_test.c
@@ -1,3 +1,14 @@
+/***************************************************************************/
+/* Copyright (c) 2024 Microsoft Corporation */
+/* Copyright (c) 2026 Eclipse ThreadX contributors */
+/* */
+/* This program and the accompanying materials are made available under */
+/* the terms of the MIT License which is available at */
+/* https://opensource.org/licenses/MIT. */
+/* */
+/* SPDX-License-Identifier: MIT */
+/***************************************************************************/
+
/* Simple nested-signaling test. */
#include "pthread.h"