Re: [HACKERS] pid_t define missing in include/miscadmin.h ...

Поиск
Список
Период
Сортировка
От The Hermit Hacker
Тема Re: [HACKERS] pid_t define missing in include/miscadmin.h ...
Дата
Msg-id Pine.BSF.4.21.0002142222410.74045-100000@thelab.hub.org
обсуждение исходный текст
Ответ на Re: [HACKERS] pid_t define missing in include/miscadmin.h ...  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-hackers
On Mon, 14 Feb 2000, Bruce Momjian wrote:

> pid_t is in /usr/include/sys/types.h.  Maybe it is missing that include?

okay guys, I've had two answers so far that I would *really* have to be a
bad programmer not to have already checked :)

miscadmin.h doesn't include sys/types.h ... if I add sys/types.h to
miscadmin.h, it compiles fine ... the first place I looked was
/usr/include/sys/types.h for this ...

According to sources as of a couple of hours ago, sys/types.h isn't
included in anywhere I can think of off hand:

%ls
CVS             config.h        mb              port            storage
access          config.h.in     miscadmin.h     postgres.h      strdup.h
bootstrap       dynloader.h     nodes           postgres_ext.h  tcop
c.h             executor        optimizer       regex           utils
catalog         lib             os.h            rewrite         version.h
commands        libpq           parser          rusagestub.h
version.h.in
%grep TYPE config.h
#define SOCKET_SIZE_TYPE size_t
%grep type.h *.h
%grep type.h */*.h
catalog/pg_type.h: * pg_type.h
catalog/pg_type.h: * $Id: pg_type.h,v 1.79 2000/01/26 05:57:59 momjian Exp
executor/spi.h:#include "catalog/pg_type.h"
parser/parse_coerce.h:#include "catalog/pg_type.h"
parser/parse_expr.h:#include "parser/parse_type.h"
parser/parse_type.h: * parse_type.h
parser/parse_type.h: * $Id: parse_type.h,v 1.12 2000/01/26 05:58:27
momjian Exp $
utils/acl.h:   change the aclitem typlen in pg_type.h */
utils/inet.h:           /* add IPV6 address type here */

And I've checked scansup.c itself, which includes <ctype.h>, but <ctype.h>
doesn't include <sys/types.h> either ... or does it on other ppls OSs?

Basically, where are other ppl getting <sys/types.h> included? :)


> 
> 
> 
> > Okay, I may be missing something here, but:
> > 
> > gmake[2]: Entering directory `/usr/local/pgsql/src/pgsql/src/backend/parser'
> > gcc -I../../include -I../../backend   -O2 -m486 -pipe -Wall -Wmissing-prototypes -Wmissing-declarations -I..
-Wno-error  -c scansup.c -o scansup.o
 
> > In file included from scansup.c:20:
> > ../../include/miscadmin.h:225: syntax error before `pid'
> > gmake[2]: *** [scansup.o] Error 1
> > 
> > Looking at include/miscadmin.h:
> > 
> > =========
> > extern int SetPidFile(pid_t pid);
> > 
> > #endif   /* MISCADMIN_H */
> > =========
> > 
> > but I can't find anywhere that pid_t is defined, and the cvs logs don't
> > appear to indicate that anyone has touched that file in a few weeks ...
> 
> 
> 
> > 
> 
> 
> > So, am I missing something?  This is using CVS source as of today, on
> > FreeBSD 4.0-CURRENT ... 
> > 
> > Marc G. Fournier                   ICQ#7615664               IRC Nick: Scrappy
> > Systems Administrator @ hub.org 
> > primary: scrappy@hub.org           secondary: scrappy@{freebsd|postgresql}.org 
> > 
> > 
> > ************
> > 
> 
> 
> -- 
>   Bruce Momjian                        |  http://www.op.net/~candle
>   pgman@candle.pha.pa.us               |  (610) 853-3000
>   +  If your life is a hard drive,     |  830 Blythe Avenue
>   +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026
> 

Marc G. Fournier                   ICQ#7615664               IRC Nick: Scrappy
Systems Administrator @ hub.org 
primary: scrappy@hub.org           secondary: scrappy@{freebsd|postgresql}.org 



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

Предыдущее
От: Alfred Perlstein
Дата:
Сообщение: Re: [HACKERS] pid_t define missing in include/miscadmin.h ...
Следующее
От: Thomas Lockhart
Дата:
Сообщение: Re: [HACKERS] Release on the 15th?