Skip to content

Commit ac3b6b3

Browse files
committed
Update on 31 Mar 2023. Expand to see details.
af5702cbf Include tx_user.h only when TX_INCLUDE_USER_DEFINE_FILE is defined for assembly files
1 parent dac41f6 commit ac3b6b3

File tree

210 files changed

+420
-0
lines changed

Some content is hidden

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

210 files changed

+420
-0
lines changed

ports/cortex_m0/ac6/src/tx_thread_context_restore.S

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
@/**************************************************************************/
2121
@/**************************************************************************/
2222
@
23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
2324
#include "tx_user.h"
25+
#endif
2426
@
2527
#if (defined(TX_ENABLE_EXECUTION_CHANGE_NOTIFY) || defined(TX_EXECUTION_PROFILE_ENABLE))
2628
.global _tx_execution_isr_exit

ports/cortex_m0/ac6/src/tx_thread_context_save.S

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
@/**************************************************************************/
2121
@/**************************************************************************/
2222
@
23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
2324
#include "tx_user.h"
25+
#endif
2426
@
2527
#if (defined(TX_ENABLE_EXECUTION_CHANGE_NOTIFY) || defined(TX_EXECUTION_PROFILE_ENABLE))
2628
.global _tx_execution_isr_enter

ports/cortex_m0/ac6/src/tx_thread_interrupt_control.S

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
@/**************************************************************************/
2121
@/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
2324
#include "tx_user.h"
25+
#endif
2426

2527
.text 32
2628
.align 4

ports/cortex_m0/ac6/src/tx_thread_interrupt_disable.S

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
@/**************************************************************************/
2121
@/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
2324
#include "tx_user.h"
25+
#endif
2426

2527
.text 32
2628
.align 4

ports/cortex_m0/ac6/src/tx_thread_interrupt_restore.S

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
@/**************************************************************************/
2121
@/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
2324
#include "tx_user.h"
25+
#endif
2426

2527
.text 32
2628
.align 4

ports/cortex_m0/ac6/src/tx_thread_schedule.S

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
@/**************************************************************************/
2121
@/**************************************************************************/
2222
@
23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
2324
#include "tx_user.h"
25+
#endif
2426
@
2527
.global _tx_thread_current_ptr
2628
.global _tx_thread_execute_ptr

ports/cortex_m0/ac6/src/tx_thread_stack_build.S

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
@/**************************************************************************/
2121
@/**************************************************************************/
2222
@
23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
2324
#include "tx_user.h"
25+
#endif
2426
@
2527
.text
2628
.align 4

ports/cortex_m0/ac6/src/tx_thread_system_return.S

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
@/**************************************************************************/
2121
@/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
2324
#include "tx_user.h"
25+
#endif
2426

2527
.text
2628
.align 4

ports/cortex_m0/ac6/src/tx_timer_interrupt.S

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
@/**************************************************************************/
2121
@/**************************************************************************/
2222
@
23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
2324
#include "tx_user.h"
25+
#endif
2426
@
2527
.global _tx_timer_time_slice
2628
.global _tx_timer_system_clock

ports/cortex_m0/gnu/src/tx_thread_context_restore.S

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
@/**************************************************************************/
2121
@/**************************************************************************/
2222
@
23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
2324
#include "tx_user.h"
25+
#endif
2426
@
2527
.global _tx_thread_system_state
2628
.global _tx_thread_current_ptr

0 commit comments

Comments
 (0)