Show
Ignore:
Timestamp:
08/04/08 20:51:26 (5 months ago)
Author:
liamstask
Message:

- incorporate changes from freertos lwip 1.3 port - mostly changes to sys_arch.c, adding in more stats info

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • firmware/trunk/core/lwip/contrib/port/FreeRTOS/AT91SAM7X/arch/sys_arch.h

    r688 r778  
    4040#define SYS_MBOX_NULL (xQueueHandle)0 
    4141#define SYS_SEM_NULL  (xSemaphoreHandle)0 
    42 // MakingThings - addition for lwip 1.3.0 
    43 // FIXME - more robust implementation... 
    44 #define sys_arch_mbox_tryfetch(mbox,msg) sys_arch_mbox_fetch(mbox,msg,1) 
    4542 
    4643typedef xSemaphoreHandle sys_sem_t; 
     
    4845typedef xTaskHandle sys_thread_t; 
    4946 
     47/* Message queue constants. */ 
     48#define archMESG_QUEUE_LENGTH ( 6 ) 
     49#define archPOST_BLOCK_TIME_MS  ( ( unsigned portLONG ) 10000 ) 
     50 
    5051#endif /* __SYS_RTXC_H__ */ 
    5152