Re: Declared but no defined functions

Поиск
Список
Период
Сортировка
От Masahiko Sawada
Тема Re: Declared but no defined functions
Дата
Msg-id CAD21AoDx3++hYqsGTZgm3voiBhMmhKg0cX6K5Rztti-PYVdr2g@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Declared but no defined functions  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Declared but no defined functions  (Michael Paquier <michael@paquier.xyz>)
Re: Declared but no defined functions  (Ashwin Agrawal <aagrawal@pivotal.io>)
Список pgsql-hackers
On Sat, Jul 6, 2019 at 7:32 AM Tom Lane <tgl@sss.pgh.pa.us> wrote:
>
> Masahiko Sawada <sawada.mshk@gmail.com> writes:
> > I think the following functions are mistakenly left in the header
> > file. So attached patch removes them.
>
> > dsa_startup()
> > TransactionIdAbort()
> > renameatt_type()
>
> Agreed, these are referenced nowhere.  I pushed the patch.

Thanks.

>
> > I realized that TransactionIdAbort is declared in the transam.h but
> > there is not its function body. As far as I found there are three
> > similar functions in total by the following script.
> > for func in `git ls-files | egrep "\w+\.h$" | xargs cat | egrep
> > "extern \w+ \w+\(.*\);" | sed -e "s/.* \(.*\)(.*);/\1(/g"`
> > do
> >     if [ `git grep "$func" -- "*.c" | wc -l` -lt 1 ];then
> >         echo $func
> >     fi
> > done
>
> FWIW, that won't catch declarations that lack "extern", nor functions
> that return pointer-to-something.  (Omitting "extern" is something
> I consider bad style, but other people seem to be down with it.)
> Might be worth another pass to look harder?
>

Indeed. I've tried to search again with the following script and got
more such functions.

for func in `git ls-files | egrep "\w+\.h$" | xargs cat | egrep -v
"(^typedef)|(DECLARE)|(BKI)" | egrep "^(extern )*[\_0-9A-Za-z]+
[\_\*0-9a-zA-Z]+ ?\(.+\);$" | sed -e "s/\(^extern \)*[\_0-9A-Za-z]\+
\([\_0-9A-Za-z\*]\+\) \{0,1\}(.*);$/\2(/g" | sed -e "s/\*//g"`
do
    if [ "`git grep "$func" -- "*.c" | wc -l`" -lt 1 ];then
        echo $func
    fi
done

Attached patch removes these functions.

Regards,

--
Masahiko Sawada
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center

Вложения

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

Предыдущее
От: Peter Geoghegan
Дата:
Сообщение: Re: [HACKERS] [WIP] Effective storage of duplicates in B-tree index.
Следующее
От: Michael Paquier
Дата:
Сообщение: Re: Declared but no defined functions