Advertisement
EdizonTN

Untitled

May 3rd, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. void vPortFree( void *pv )
  2. {
  3. /* Memory cannot be freed using this scheme. See heap_2.c, heap_3.c and
  4. heap_4.c for alternative implementations, and the memory management pages of
  5. http://www.FreeRTOS.org for more information. */
  6. ( void ) pv;
  7.  
  8. /* Force an assert as it is invalid to call this function. */
  9. configASSERT( pv == NULL );
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement