summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-06-05 12:45:37 +0100
committerDamien George <damien.p.george@gmail.com>2016-06-28 11:28:53 +0100
commit5b8e884573d582d2c48c7b344a8876fbbeb67692 (patch)
tree66356ee7ccc7643da2418d92b2674c4324fec5eb
parent1d5aa9d245362d060843688a97f12a86b8fe1e46 (diff)
downloadmicropython-5b8e884573d582d2c48c7b344a8876fbbeb67692.tar.gz
micropython-5b8e884573d582d2c48c7b344a8876fbbeb67692.zip
cc3200: Remove .boot section attribute from osi_TaskCreate function.
This function is no longer used. Having the .boot section attribute meant that it was included in the firmware regargless of use. Without this attribute the linker can remove the function.
-rw-r--r--cc3200/simplelink/oslib/osi_freertos.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/cc3200/simplelink/oslib/osi_freertos.c b/cc3200/simplelink/oslib/osi_freertos.c
index 80d92dc4dd..0475359d09 100644
--- a/cc3200/simplelink/oslib/osi_freertos.c
+++ b/cc3200/simplelink/oslib/osi_freertos.c
@@ -273,7 +273,6 @@ OsiReturnVal_e osi_LockObjCreate(OsiLockObj_t* pLockObj)
\note
\warning
*/
-__attribute__ ((section (".boot")))
OsiReturnVal_e osi_TaskCreate(P_OSI_TASK_ENTRY pEntry,const signed char * const pcName,
unsigned short usStackDepth, void *pvParameters,
unsigned long uxPriority,OsiTaskHandle* pTaskHandle)