summaryrefslogtreecommitdiff
path: root/utility/rtos_compatibility_layers
diff options
context:
space:
mode:
authorFrédéric Desbiens <[email protected]>2026-06-08 10:01:32 +0200
committerGitHub <[email protected]>2026-06-08 10:01:32 +0200
commit87ab09cce305eb9cd4aacac4e8c62af72f665bff (patch)
treedd062ebbea5235d1921c64b396bf7e4ce79e9e15 /utility/rtos_compatibility_layers
parent9ab0cf9683f832cdb48e2099533a5b06a3afcd64 (diff)
parent730b61874bc5cf40768987605ae5187fde0fa1e2 (diff)
Merge pull request #544 from eclipse-threadx/devv6.5.1.202602_rel
Merging changes for the v.6.5.1.202602 release
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"