Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
e4798027
Commit
e4798027
authored
27 years ago
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
There is no more 'port-protos.h', so don't try to include it
From: Frank Ridderbusch <ridderbusch.pad@sni.de>
parent
88aa07c4
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
40 deletions
+3
-40
src/backend/port/getrusage.c
src/backend/port/getrusage.c
+1
-2
src/backend/port/random.c
src/backend/port/random.c
+1
-2
src/backend/port/srandom.c
src/backend/port/srandom.c
+1
-2
src/backend/port/svr4/port-protos.h
src/backend/port/svr4/port-protos.h
+0
-34
No files found.
src/backend/port/getrusage.c
View file @
e4798027
/* $Id: getrusage.c,v 1.
5 1998/02/11 19:10:57 momjian
Exp $ */
/* $Id: getrusage.c,v 1.
6 1998/02/24 03:45:06 scrappy
Exp $ */
#include <math.h>
/* for pow() prototype */
#include <errno.h>
#include "rusagestub.h"
#include "port-protos.h"
#if 0 /* this is from univel port ... how does compiler define? */
/* same for i386_solaris port ... how does compiler define? */
...
...
This diff is collapsed.
Click to expand it.
src/backend/port/random.c
View file @
e4798027
/* $Id: random.c,v 1.
2 1997/12/19 13:34:29
scrappy Exp $ */
/* $Id: random.c,v 1.
3 1998/02/24 03:45:07
scrappy Exp $ */
#include <math.h>
/* for pow() prototype */
#include <errno.h>
#include "rusagestub.h"
#include "port-protos.h"
long
random
()
...
...
This diff is collapsed.
Click to expand it.
src/backend/port/srandom.c
View file @
e4798027
/* $Id: srandom.c,v 1.
3 1997/12/19 13:34:31
scrappy Exp $ */
/* $Id: srandom.c,v 1.
4 1998/02/24 03:45:07
scrappy Exp $ */
#include <math.h>
/* for pow() prototype */
#include <errno.h>
#include "rusagestub.h"
#include "port-protos.h"
void
srandom
(
unsigned
int
seed
)
...
...
This diff is collapsed.
Click to expand it.
src/backend/port/svr4/port-protos.h
deleted
100644 → 0
View file @
88aa07c4
/*-------------------------------------------------------------------------
*
* port-protos.h--
* port-specific prototypes for Intel x86/Intel SVR4
*
*
* Copyright (c) 1994, Regents of the University of California
*
* port-protos.h,v 1.2 1995/03/17 06:40:18 andrew Exp
*
*-------------------------------------------------------------------------
*/
#ifndef PORT_PROTOS_H
#define PORT_PROTOS_H
#include <dlfcn.h>
#include "fmgr.h"
/* for func_ptr */
#include "utils/dynamic_loader.h"
/* dynloader.c */
/*
* Dynamic Loader on Intel x86/Intel SVR4.
*
* this dynamic loader uses the system dynamic loading interface for shared
* libraries (ie. dlopen/dlsym/dlclose). The user must specify a shared
* library as the file to be dynamically loaded.
*
*/
#define pg_dlopen(f) dlopen(f,RTLD_LAZY)
#define pg_dlsym dlsym
#define pg_dlclose dlclose
#define pg_dlerror dlerror
#endif
/* PORT_PROTOS_H */
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment