mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-15 17:27:46 -04:00
CBMC proof for vProcessGeneratedUDPPacket (#203)
* Add Proof * Update * Update the proof * Update the proof * Clean-up * Clean-up v2 * Update freertos_api.c * update stub
This commit is contained in:
parent
3c573ad091
commit
86117b5173
3 changed files with 130 additions and 0 deletions
|
@ -377,3 +377,20 @@ const char * pcApplicationHostnameHook( void )
|
|||
}
|
||||
|
||||
/****************************************************************/
|
||||
|
||||
|
||||
/****************************************************************
|
||||
* Abstract xNetworkInterfaceOutput
|
||||
* https://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_TCP/Embedded_Ethernet_Porting.html#xNetworkInterfaceOutput
|
||||
****************************************************************/
|
||||
BaseType_t xNetworkInterfaceOutput( NetworkBufferDescriptor_t * const pxNetworkBuffer, BaseType_t bReleaseAfterSend )
|
||||
{
|
||||
__CPROVER_assert( pxNetworkBuffer != NULL, "The networkbuffer cannot be NULL" );
|
||||
|
||||
BaseType_t xReturn;
|
||||
|
||||
/* Return some random value. */
|
||||
return xReturn;
|
||||
}
|
||||
|
||||
/****************************************************************/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue