Browse Source

Fixed bug #32561 tcp_poll argument definition out-of-order in documentation

STABLE-2_1_x
goldsimon 15 years ago
parent
commit
4e3b2b9f6b
  1. 4
      CHANGELOG
  2. 5
      doc/rawapi.txt

4
CHANGELOG

@ -233,6 +233,10 @@ HISTORY
++ Bugfixes:
2011-02-17: Simon Goldschmidt
* rawapi.txt: Fixed bug #32561 tcp_poll argument definition out-of-order in
documentation
2011-02-17: Simon Goldschmidt
* many files: Added missing U/UL modifiers to fix 16-bit-arch portability.

5
doc/rawapi.txt

@ -251,8 +251,9 @@ if a call to tcp_write() has failed because memory wasn't available,
the application may use the polling functionality to call tcp_write()
again when the connection has been idle for a while.
- void tcp_poll(struct tcp_pcb *pcb, u8_t interval,
err_t (* poll)(void *arg, struct tcp_pcb *tpcb))
- void tcp_poll(struct tcp_pcb *pcb,
err_t (* poll)(void *arg, struct tcp_pcb *tpcb),
u8_t interval)
Specifies the polling interval and the callback function that should
be called to poll the application. The interval is specified in

Loading…
Cancel
Save