mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 15:11:40 +01:00 
			
		
		
		
	This commit adds a separate linker fragment file "linker_common.lf" for the functions in "port_common.c". The placement rules are now clearly specified inside the linker fragment file.
		
			
				
	
	
		
			30 lines
		
	
	
		
			793 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			793 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
 | |
|  *
 | |
|  * SPDX-License-Identifier: Apache-2.0
 | |
|  */
 | |
| 
 | |
| /*
 | |
|  * Since at least FreeRTOS V7.5.3 uxTopUsedPriority is no longer
 | |
|  * present in the kernel, so it has to be supplied by other means for
 | |
|  * OpenOCD's threads awareness.
 | |
|  *
 | |
|  * Add this file to your project, and, if you're using --gc-sections,
 | |
|  * ``--undefined=uxTopUsedPriority'' (or
 | |
|  * ``-Wl,--undefined=uxTopUsedPriority'' when using gcc for final
 | |
|  * linking) to your LDFLAGS; same with all the other symbols you need.
 | |
|  */
 | |
| 
 | |
| #include "FreeRTOS.h"
 | |
| #include "sdkconfig.h"
 | |
| 
 | |
| #ifdef __GNUC__
 | |
| #define USED __attribute__((used))
 | |
| #else
 | |
| #define USED
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_FREERTOS_DEBUG_OCDAWARE
 | |
| const int USED uxTopUsedPriority = configMAX_PRIORITIES - 1;  //will be removed
 | |
| #endif
 |