Re: Preventing abort() and exit() calls in libpq
Вложения
В списке pgsql-hackers по дате отправления:
| От | Michael Paquier |
|---|---|
| Тема | Re: Preventing abort() and exit() calls in libpq |
| Дата | |
| Msg-id | YNl/rGAtp0Ovmtis@paquier.xyz обсуждение |
| Ответ на | Preventing abort() and exit() calls in libpq (Tom Lane <tgl@sss.pgh.pa.us>) |
| Ответы |
Re: Preventing abort() and exit() calls in libpq
Re: Preventing abort() and exit() calls in libpq |
| Список | pgsql-hackers |
On Sat, Jun 26, 2021 at 05:29:29PM -0400, Tom Lane wrote: > I'll stick this into the CF list to see if the cfbot agrees that > it finds the abort() problems... The CF Bot is finding those problems. > +# Check for functions that libpq must not call. > +# (If nm doesn't exist or doesn't work on shlibs, this test will silently > +# do nothing, which is fine.) > +.PHONY: check-libpq-refs > +check-libpq-refs: $(shlib) > + @! nm -A -g -u $< 2>/dev/null | grep -e abort -e exit "abort" and "exit" could be generic terms present in some other libraries. Could be be better to match with "U abort" and "U exit" instead? MinGW has a nm command, and it has a compatible option set, so I think that it should work. -- Michael
В списке pgsql-hackers по дате отправления:
Сайт использует файлы cookie для корректной работы и повышения удобства. Нажимая кнопку «Принять» или продолжая пользоваться сайтом, вы соглашаетесь на их использование в соответствии с Политикой в отношении обработки cookie ООО «ППГ», в том числе на передачу данных из файлов cookie сторонним статистическим и рекламным службам. Вы можете управлять настройками cookie через параметры вашего браузера