Home
last modified time | relevance | path

Searched refs:prio (Results 1 – 8 of 8) sorted by relevance

/lib/liblwip/src/core/
Dtcp.c552 lpcb->prio = pcb->prio; in tcp_listen_with_backlog()
1163 tcp_setprio(struct tcp_pcb *pcb, u8_t prio) in tcp_setprio() argument
1165 pcb->prio = prio; in tcp_setprio()
1217 tcp_kill_prio(u8_t prio) in tcp_kill_prio() argument
1230 if (pcb->prio <= prio && in tcp_kill_prio()
1231 pcb->prio <= mprio && in tcp_kill_prio()
1235 mprio = pcb->prio; in tcp_kill_prio()
1278 tcp_alloc(u8_t prio) in tcp_alloc() argument
1292 LWIP_DEBUGF(TCP_DEBUG, ("tcp_alloc: killing connection with prio lower than %d\n", prio)); in tcp_alloc()
1293 tcp_kill_prio(prio); in tcp_alloc()
[all …]
Dtcp_in.c466 npcb = tcp_alloc(pcb->prio); in tcp_listen_input()
/lib/liblwip/src/include/lwip/
Dtcp.h162 u8_t prio; \
361 void tcp_setprio (struct tcp_pcb *pcb, u8_t prio);
Dsys.h224 …read_t sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int prio);
Dtcp_impl.h66 struct tcp_pcb * tcp_alloc (u8_t prio);
/lib/liblwip/src/arch/
Dsys_arch.c128 sys_thread_new(const char *name, lwip_thread_fn function, void *arg, int stacksize, int prio) in sys_thread_new() argument
135 LWIP_UNUSED_ARG(prio); in sys_thread_new()
/lib/liblwip/doc/
Dsys_arch.txt171 …thread_t sys_thread_new(char *name, void (* thread)(void *arg), void *arg, int stacksize, int prio)
173 Starts a new thread named "name" with priority "prio" that will begin its
/lib/liblwip/
DCHANGELOG299 * tcp.c: fixed bug #31723 (tcp_kill_prio() kills pcbs with the same prio) by
746 * tcp.c: tcp_listen() did not copy the pcb's prio.