mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-02 04:13:54 -04:00
Microblaze: Add a port optimised task selection implementation to the Microblaze port.
Windows port: Add code to ensure Windows threads are truely suspended before resuming another thread. Typo correction to the task notification standard demo task. Correct case of some include file names to fix build issues on Linux.
This commit is contained in:
parent
cfb8223232
commit
8a1450effc
32 changed files with 156 additions and 4410 deletions
|
@ -198,7 +198,7 @@ a lot of data that needs to be copied, this should be set high. */
|
|||
|
||||
/* TCP sender buffer space (pbufs). This must be at least = 2 *
|
||||
TCP_SND_BUF/TCP_MSS for things to work. */
|
||||
#define TCP_SND_QUEUELEN (16 * TCP_SND_BUF/TCP_MSS)
|
||||
#define TCP_SND_QUEUELEN ( ( 16 * TCP_SND_BUF )/ TCP_MSS )
|
||||
|
||||
/* TCP writable space (bytes). This must be less than or equal
|
||||
to TCP_SND_BUF. It is the amount of space which must be
|
||||
|
@ -206,7 +206,7 @@ a lot of data that needs to be copied, this should be set high. */
|
|||
#define TCP_SNDLOWAT (TCP_SND_BUF/2)
|
||||
|
||||
/* TCP receive window. */
|
||||
#define TCP_WND ( 2048 )
|
||||
#define TCP_WND ( 8 * TCP_MSS )
|
||||
|
||||
/* Maximum number of retransmissions of data segments. */
|
||||
#define TCP_MAXRTX 12
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue