Re: Misc. consequences of backend memory management changes

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Misc. consequences of backend memory management changes
Дата
Msg-id 956.962303407@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Misc. consequences of backend memory management changes  (Peter Eisentraut <peter_e@gmx.net>)
Ответы Re: Misc. consequences of backend memory management changes  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-hackers
Peter Eisentraut <peter_e@gmx.net> writes:
>> Will anyone object if I make CLOBBER_FREED_MEMORY defined by default
>> until 7.1 release is near?

> I've been thinking that we need a configure option for this sort of stuff,
> like

>    --enable-debug=memory,lock,foo,noipc

> which would result in

> #define MEMORY_DEBUG 1
> #define LOCK_DEBUG 1
> #define FOO_DEBUG 1
> #undef IPC_DEBUG

> Comments?

Not unreasonable, though it would tend to encourage use of short,
hard-to-understand names for debug options :-(.  We could live with
that as long as there were adequate documentation about what each
option does in config.h.in.

If you wanna do it then I'd suggest folding cassert into the same
mechanism.

Last night I rearranged config.h.in so that the configure-driven symbols
are more clearly separated from the non-configurable symbols, and I also
separated out the debug symbols from the feature/limit symbols.  Should
make a good starting point for seeing what needs to be dealt with.
Unfortunately the existing debug symbols were mostly undocumented, and
I didn't take the time to dig to see what they do ... if anything ...
        regards, tom lane


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: Misc. consequences of backend memory management changes
Следующее
От: "Stephan Szabo"
Дата:
Сообщение: Re: AW: Proposal: More flexible backup/restore via pg_dump