Re: cast pid_t to int when using *printf

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: cast pid_t to int when using *printf
Дата
Msg-id 21288.1096035202@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: cast pid_t to int when using *printf  (Neil Conway <neilc@samurai.com>)
Ответы Re: cast pid_t to int when using *printf
Список pgsql-patches
Neil Conway <neilc@samurai.com> writes:
> I guess it would be safest to use %ld and cast pid_t to long. Of course,
> this seems a little paranoid -- is there actually a system with
> sizeof(pid_t) != 4?

Traditionally PIDs fit in 16 bits, let alone 32.  I'd recommend that we
standardize on casting pid_t to int for printing purposes; I think
that's what's being done in more places than not.  Also, as you note, we
are using int variables to hold PIDs in many places --- I don't think
it's worth running around and changing those either.

            regards, tom lane

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

Предыдущее
От: Neil Conway
Дата:
Сообщение: Re: cast pid_t to int when using *printf
Следующее
От: Kris Jurka
Дата:
Сообщение: Code/comment cleanups now that odbc is gone.