Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
67c92f42
Commit
67c92f42
authored
27 years ago
by
Marc G. Fournier
Browse files
Options
Downloads
Patches
Plain Diff
Fix up the alpha port/dynloader for configure
parent
68c6ddbe
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/backend/port/alpha/port-protos.h
+1
-21
1 addition, 21 deletions
src/backend/port/alpha/port-protos.h
src/backend/port/dynloader/alpha.c
+4
-0
4 additions, 0 deletions
src/backend/port/dynloader/alpha.c
src/backend/port/dynloader/alpha.h
+35
-0
35 additions, 0 deletions
src/backend/port/dynloader/alpha.h
with
40 additions
and
21 deletions
src/backend/port/alpha/port-protos.h
+
1
−
21
View file @
67c92f42
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: port-protos.h,v 1.
3
199
7
/0
9
/0
8
0
2:25:47 momjian
Exp $
* $Id: port-protos.h,v 1.
4
199
8
/0
2
/0
2
0
3:49:07 scrappy
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -14,26 +14,6 @@
...
@@ -14,26 +14,6 @@
#ifndef PORT_PROTOS_H
#ifndef PORT_PROTOS_H
#define PORT_PROTOS_H
#define PORT_PROTOS_H
#include
<dlfcn.h>
#include
"utils/dynamic_loader.h"
/* dynloader.c */
/*
* Dynamic Loader on Alpha OSF/1.x
*
* 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(h, f) ((func_ptr)dlsym(h, f))
#define pg_dlclose(h) dlclose(h)
#define pg_dlerror() dlerror()
/* port.c */
extern
void
init_address_fixup
(
void
);
extern
void
init_address_fixup
(
void
);
#endif
/* PORT_PROTOS_H */
#endif
/* PORT_PROTOS_H */
This diff is collapsed.
Click to expand it.
src/backend/port/dynloader/alpha.c
0 → 100644
+
4
−
0
View file @
67c92f42
/* Dummy file used for nothing at this point
*
* see alpha.h
*/
This diff is collapsed.
Click to expand it.
src/backend/port/dynloader/alpha.h
0 → 100644
+
35
−
0
View file @
67c92f42
/*-------------------------------------------------------------------------
*
* alpha.h--
* prototypes for OSF/1-specific routines
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: alpha.h,v 1.1 1998/02/02 03:49:11 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef PORT_PROTOS_H
#define PORT_PROTOS_H
#include
<dlfcn.h>
#include
"utils/dynamic_loader.h"
/* dynloader.c */
/*
* Dynamic Loader on Alpha OSF/1.x
*
* 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(h, f) ((func_ptr)dlsym(h, f))
#define pg_dlclose(h) dlclose(h)
#define pg_dlerror() dlerror()
#endif
/* PORT_PROTOS_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment