mirror of
https://github.com/postgres/postgres.git
synced 2025-06-03 00:02:26 -04:00
More cleanups...only need one rusagestub.h
This commit is contained in:
parent
5acf432ddb
commit
c6bd6860d7
@ -1,3 +1,5 @@
|
|||||||
|
/* $Id: gethostname.c,v 1.2 1997/12/19 13:34:26 scrappy Exp $ */
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
/* $Id: getrusage.c,v 1.3 1997/12/19 13:34:27 scrappy Exp $ */
|
||||||
|
|
||||||
#include <math.h> /* for pow() prototype */
|
#include <math.h> /* for pow() prototype */
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
@ -1,31 +0,0 @@
|
|||||||
/*-------------------------------------------------------------------------
|
|
||||||
*
|
|
||||||
* rusagestub.h--
|
|
||||||
* Stubs for getrusage(3).
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
|
||||||
*
|
|
||||||
* rusagestub.h,v 1.1.1.1 1994/11/07 05:19:39 andrew Exp
|
|
||||||
*
|
|
||||||
*-------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
#ifndef RUSAGESTUB_H
|
|
||||||
#define RUSAGESTUB_H
|
|
||||||
|
|
||||||
#include <sys/time.h> /* for struct timeval */
|
|
||||||
#include <sys/times.h> /* for struct tms */
|
|
||||||
#include <limits.h> /* for CLK_TCK */
|
|
||||||
|
|
||||||
#define RUSAGE_SELF 0
|
|
||||||
#define RUSAGE_CHILDREN -1
|
|
||||||
|
|
||||||
struct rusage
|
|
||||||
{
|
|
||||||
struct timeval ru_utime; /* user time used */
|
|
||||||
struct timeval ru_stime; /* system time used */
|
|
||||||
};
|
|
||||||
|
|
||||||
extern int getrusage(int who, struct rusage * rusage);
|
|
||||||
|
|
||||||
#endif /* RUSAGESTUB_H */
|
|
@ -1,31 +0,0 @@
|
|||||||
/*-------------------------------------------------------------------------
|
|
||||||
*
|
|
||||||
* rusagestub.h--
|
|
||||||
* Stubs for getrusage(3).
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
|
||||||
*
|
|
||||||
* $Id: rusagestub.h,v 1.3 1997/09/08 02:26:29 momjian Exp $
|
|
||||||
*
|
|
||||||
*-------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
#ifndef RUSAGESTUB_H
|
|
||||||
#define RUSAGESTUB_H
|
|
||||||
|
|
||||||
#include <sys/time.h> /* for struct timeval */
|
|
||||||
#include <sys/times.h> /* for struct tms */
|
|
||||||
#include <limits.h> /* for CLK_TCK */
|
|
||||||
|
|
||||||
#define RUSAGE_SELF 0
|
|
||||||
#define RUSAGE_CHILDREN -1
|
|
||||||
|
|
||||||
struct rusage
|
|
||||||
{
|
|
||||||
struct timeval ru_utime; /* user time used */
|
|
||||||
struct timeval ru_stime; /* system time used */
|
|
||||||
};
|
|
||||||
|
|
||||||
extern int getrusage(int who, struct rusage * rusage);
|
|
||||||
|
|
||||||
#endif /* RUSAGESTUB_H */
|
|
@ -1,4 +1,4 @@
|
|||||||
/*
|
/* $Id: inet_aton.c,v 1.11 1997/12/19 13:34:28 scrappy Exp $
|
||||||
*
|
*
|
||||||
* This inet_aton() function was taken from the GNU C library and
|
* This inet_aton() function was taken from the GNU C library and
|
||||||
* incorporated into Postgres for those systems which do not have this
|
* incorporated into Postgres for those systems which do not have this
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
int
|
/* $Id: inet_aton.h,v 1.6 1997/12/19 13:34:29 scrappy Exp $ */
|
||||||
inet_aton(const char *cp, struct in_addr * addr);
|
|
||||||
|
int inet_aton(const char *cp, struct in_addr * addr);
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
/* $Id: random.c,v 1.2 1997/12/19 13:34:29 scrappy Exp $ */
|
||||||
|
|
||||||
#include <math.h> /* for pow() prototype */
|
#include <math.h> /* for pow() prototype */
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
* Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* rusagestub.h,v 1.1.1.1 1994/11/07 05:19:39 andrew Exp
|
* $Id: rusagestub.h,v 1.2 1997/12/19 13:34:30 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
@ -1,31 +0,0 @@
|
|||||||
/*-------------------------------------------------------------------------
|
|
||||||
*
|
|
||||||
* rusagestub.h--
|
|
||||||
* Stubs for getrusage(3).
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
|
||||||
*
|
|
||||||
* $Id: rusagestub.h,v 1.3 1997/09/08 02:27:13 momjian Exp $
|
|
||||||
*
|
|
||||||
*-------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
#ifndef RUSAGESTUB_H
|
|
||||||
#define RUSAGESTUB_H
|
|
||||||
|
|
||||||
#include <sys/time.h> /* for struct timeval */
|
|
||||||
#include <sys/times.h> /* for struct tms */
|
|
||||||
#include <limits.h> /* for CLK_TCK */
|
|
||||||
|
|
||||||
#define RUSAGE_SELF 0
|
|
||||||
#define RUSAGE_CHILDREN -1
|
|
||||||
|
|
||||||
struct rusage
|
|
||||||
{
|
|
||||||
struct timeval ru_utime; /* user time used */
|
|
||||||
struct timeval ru_stime; /* system time used */
|
|
||||||
};
|
|
||||||
|
|
||||||
extern int getrusage(int who, struct rusage * rusage);
|
|
||||||
|
|
||||||
#endif /* RUSAGESTUB_H */
|
|
@ -1,3 +1,5 @@
|
|||||||
|
/* $Id: srandom.c,v 1.3 1997/12/19 13:34:31 scrappy Exp $ */
|
||||||
|
|
||||||
#include <math.h> /* for pow() prototype */
|
#include <math.h> /* for pow() prototype */
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
/* $Id: strcasecmp.c,v 1.2 1997/12/19 13:34:32 scrappy Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1987 Regents of the University of California.
|
* Copyright (c) 1987 Regents of the University of California.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
/* $Id: strerror.c,v 1.4 1997/12/19 13:34:32 scrappy Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* strerror - map error number to descriptive string
|
* strerror - map error number to descriptive string
|
||||||
*
|
*
|
||||||
|
@ -1,31 +0,0 @@
|
|||||||
/*-------------------------------------------------------------------------
|
|
||||||
*
|
|
||||||
* rusagestub.h--
|
|
||||||
* Stubs for getrusage(3).
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
|
||||||
*
|
|
||||||
* rusagestub.h,v 1.1.1.1 1994/11/07 05:19:39 andrew Exp
|
|
||||||
*
|
|
||||||
*-------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
#ifndef RUSAGESTUB_H
|
|
||||||
#define RUSAGESTUB_H
|
|
||||||
|
|
||||||
#include <sys/time.h> /* for struct timeval */
|
|
||||||
#include <sys/times.h> /* for struct tms */
|
|
||||||
#include <limits.h> /* for CLK_TCK */
|
|
||||||
|
|
||||||
#define RUSAGE_SELF 0
|
|
||||||
#define RUSAGE_CHILDREN -1
|
|
||||||
|
|
||||||
struct rusage
|
|
||||||
{
|
|
||||||
struct timeval ru_utime; /* user time used */
|
|
||||||
struct timeval ru_stime; /* system time used */
|
|
||||||
};
|
|
||||||
|
|
||||||
extern int getrusage(int who, struct rusage * rusage);
|
|
||||||
|
|
||||||
#endif /* RUSAGESTUB_H */
|
|
@ -1,31 +0,0 @@
|
|||||||
/*-------------------------------------------------------------------------
|
|
||||||
*
|
|
||||||
* rusagestub.h--
|
|
||||||
* Stubs for getrusage(3).
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
|
||||||
*
|
|
||||||
* rusagestub.h,v 1.1.1.1 1994/11/07 05:19:39 andrew Exp
|
|
||||||
*
|
|
||||||
*-------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
#ifndef RUSAGESTUB_H
|
|
||||||
#define RUSAGESTUB_H
|
|
||||||
|
|
||||||
#include <sys/time.h> /* for struct timeval */
|
|
||||||
#include <sys/times.h> /* for struct tms */
|
|
||||||
#include <limits.h> /* for CLK_TCK */
|
|
||||||
|
|
||||||
#define RUSAGE_SELF 0
|
|
||||||
#define RUSAGE_CHILDREN -1
|
|
||||||
|
|
||||||
struct rusage
|
|
||||||
{
|
|
||||||
struct timeval ru_utime; /* user time used */
|
|
||||||
struct timeval ru_stime; /* system time used */
|
|
||||||
};
|
|
||||||
|
|
||||||
extern int getrusage(int who, struct rusage * rusage);
|
|
||||||
|
|
||||||
#endif /* RUSAGESTUB_H */
|
|
Loading…
x
Reference in New Issue
Block a user