diff options
| author | Damien George | 2016-06-05 12:45:37 +0100 |
|---|---|---|
| committer | Damien George | 2016-06-28 11:28:53 +0100 |
| commit | 5b8e884573d582d2c48c7b344a8876fbbeb67692 (patch) | |
| tree | 66356ee7ccc7643da2418d92b2674c4324fec5eb | |
| parent | 1d5aa9d245362d060843688a97f12a86b8fe1e46 (diff) | |
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.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cc3200/simplelink/oslib/osi_freertos.c b/cc3200/simplelink/oslib/osi_freertos.c index 80d92dc4d..0475359d0 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) |
