Lines Matching full:from
12 * from any thread except TCPIP thread.
65 * timer IRQ and ethernet IRQ from each other, assuming these may be nested.
68 * lwIP is _ONLY_ called from mainloop callstacks here. The ethernet IRQ
70 * mainloop. Ensure lwIP is _NEVER_ called from an interrupt, e.g.
76 * @ref sequential_api are designed to be called from threads other than
78 * But @ref callbackstyle_api functions must _ONLY_ be called from
79 * TCPIP thread. It is a common error to call these from other threads
80 * or from IRQ contexts. Ethernet RX needs to deliver incoming packets
83 * Again, ensure lwIP is _NEVER_ called from an interrupt, e.g.
86 * 1) tcpip_callback() can be used get called back from TCPIP thread,
87 * it is safe to call any @ref callbackstyle_api from there.
107 * Feed incoming packets to netif->input(pbuf, netif) function from mainloop,
108 * *not* *from* *interrupt* *context*. You can allocate a @ref pbuf in interrupt
109 * context and put them into a queue which is processed from mainloop.\n