From 5b8e884573d582d2c48c7b344a8876fbbeb67692 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 5 Jun 2016 12:45:37 +0100 Subject: [PATCH] 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. --- cc3200/simplelink/oslib/osi_freertos.c | 1 - 1 file changed, 1 deletion(-) 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)