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
88aa07c4
Commit
88aa07c4
authored
Feb 24, 1998
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgot about the svr4 dynloader stuff
From: Frank Ridderbusch <ridderbusch.pad@sni.de>
parent
5cf1964f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
0 deletions
+38
-0
src/backend/port/dynloader/svr4.c
src/backend/port/dynloader/svr4.c
+4
-0
src/backend/port/dynloader/svr4.h
src/backend/port/dynloader/svr4.h
+34
-0
No files found.
src/backend/port/dynloader/svr4.c
0 → 100644
View file @
88aa07c4
/* Dummy file used for nothing at this point
*
* see svr4.h
*/
src/backend/port/dynloader/svr4.h
0 → 100644
View file @
88aa07c4
/*-------------------------------------------------------------------------
*
* dynloader.h--
* port-specific prototypes for Intel x86/Intel SVR4
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: svr4.h,v 1.1 1998/02/24 03:41:58 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef DYNLOADER_H
#define DYNLOADER_H
#include <dlfcn.h>
#include "fmgr.h"
/* for func_ptr */
#include "utils/dynamic_loader.h"
/* dynloader.h */
/*
* 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
/* DYNLOADER_H */
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