[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [lwip-devel] Converting to git
From: |
Simon Goldschmidt |
Subject: |
Re: [lwip-devel] Converting to git |
Date: |
Mon, 25 Jul 2011 21:43:36 +0200 |
"Wojciech A. Koszek" <address@hidden> wrote:
> That was my first guess. But GCC complained about it, since in
> src/core/timers.c
> has this:
>
> 432 #if PBUF_POOL_FREE_OOSEQ
> 433 PBUF_CHECK_FREE_OOSEQ();
> 434 #endif /* PBUF_POOL_FREE_OOSEQ */
>
> This calls pbuf_free_ooseq(). If you get rid of this from this file (somehow),
> we'll be able to make pbuf_free_ooseq() static or remove it at all.
>
> This is the only place that calls PBUF_CHECK_FREE_OOSEQ.
Exactly. But since it's in another file, it cannot be the source of the error:
unless you manually combine files and pass them to the compiler as one file,
gcc will compile every file on it's own (i.e compile every file as if the
others don't exist). That means using pbuf_free_ooseq in any other file will
not change the error message seen when compiling pbuf.c. Also, the error
message is different from the one in your example...
>
Simon
- Re: [lwip-devel] Converting to git, (continued)
- Re: [lwip-devel] Converting to git, Kieran Mansley, 2011/07/23
- Re: [lwip-devel] Converting to git, Wojciech A. Koszek, 2011/07/23
- Re: [lwip-devel] Converting to git, address@hidden, 2011/07/24
- Re: [lwip-devel] Converting to git, Wojciech A. Koszek, 2011/07/24
- Re: [lwip-devel] Converting to git, address@hidden, 2011/07/24
- Re: [lwip-devel] Converting to git, Wojciech A. Koszek, 2011/07/24
- Re: [lwip-devel] Converting to git, address@hidden, 2011/07/25
- Re: [lwip-devel] Converting to git, Wojciech A. Koszek, 2011/07/25
- Re: [lwip-devel] Converting to git, Simon Goldschmidt, 2011/07/25
- Re: [lwip-devel] Converting to git, Wojciech A. Koszek, 2011/07/25
- Re: [lwip-devel] Converting to git,
Simon Goldschmidt <=
- Re: [lwip-devel] Converting to git, address@hidden, 2011/07/26
- Re: [lwip-devel] Converting to git, Wojciech A. Koszek, 2011/07/26
- Re: [lwip-devel] Converting to git, Wojciech A. Koszek, 2011/07/26
- Re: [lwip-devel] Converting to git, Bill Auerbach, 2011/07/25
- Re: [lwip-devel] Converting to git, Simon Goldschmidt, 2011/07/25
- Re: [lwip-devel] Converting to git, Simon Goldschmidt, 2011/07/25
- Re: [lwip-devel] Converting to git, Bill Auerbach, 2011/07/25