Skip to content

Commit 131a7e3

Browse files
author
Amanda Butler
authored
Fix typo in RTOS.md
Fix typo in file.
1 parent c150df3 commit 131a7e3

File tree

1 file changed

+1
-1
lines changed
  • docs/reference/configuration

1 file changed

+1
-1
lines changed

docs/reference/configuration/RTOS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Thread memory model**
44

5-
All threads in Mbed OS share a global heap. By default, mbed OS dynamically allocates memory for thread stacks from the global heap. User spawned thread stacks can be allocated from other memory areas. The size of the global heap depends on the compiler. The heap size is static when compiling with IAR, and it is different for each target in Mbed OS. You can find it in the IAR linker configuration files nested inside target directories. For example, you can find the [linker configuration file](https://github.com/ARMmbed/mbed-os/blob/master/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/TOOLCHAIN_IAR/MK66FN2M0xxx18.icf#L49-L51) for a K66F. For the GCC and ARM compilers, the heap size is dynamic based on RAM usage.
5+
All threads in Mbed OS share a global heap. By default, Mbed OS dynamically allocates memory for thread stacks from the global heap. User spawned thread stacks can be allocated from other memory areas. The size of the global heap depends on the compiler. The heap size is static when compiling with IAR, and it is different for each target in Mbed OS. You can find it in the IAR linker configuration files nested inside target directories. For example, you can find the [linker configuration file](https://github.com/ARMmbed/mbed-os/blob/master/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/TOOLCHAIN_IAR/MK66FN2M0xxx18.icf#L49-L51) for a K66F. For the GCC and ARM compilers, the heap size is dynamic based on RAM usage.
66

77
**Default threads**
88

0 commit comments

Comments
 (0)