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
f8a47462
Commit
f8a47462
authored
26 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Patches HPUX applied for Tom Lane.
parent
824c6865
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/include/port/hpux.h
+5
-0
5 additions, 0 deletions
src/include/port/hpux.h
src/makefiles/Makefile.hpux
+18
-3
18 additions, 3 deletions
src/makefiles/Makefile.hpux
src/tools/backend/index.html
+1
-1
1 addition, 1 deletion
src/tools/backend/index.html
with
24 additions
and
4 deletions
src/include/port/hpux.h
+
5
−
0
View file @
f8a47462
#define JMP_BUF
#define JMP_BUF
#define USE_POSIX_TIME
#define USE_POSIX_TIME
/* HPUX 10 has full POSIX signal functionality.
* On HPUX 9, we rely on BSD-compatible signal() in libBSD.
*/
#ifdef HPUX_10
#define USE_POSIX_SIGNALS
#define USE_POSIX_SIGNALS
#endif
#define HAS_TEST_AND_SET
#define HAS_TEST_AND_SET
typedef
struct
typedef
struct
{
{
...
...
This diff is collapsed.
Click to expand it.
src/makefiles/Makefile.hpux
+
18
−
3
View file @
f8a47462
HPUX_MAJOR
=
$(
shell
uname
-r
|sed
's/^[^.]*\.\([^.]*\).*/\1/'
)
HPUX_MAJOR
=
$(
shell
uname
-r
|sed
's/^[^.]*\.\([^.]*\).*/\1/'
)
# Distinguish HPUX 10 (and later) from HPUX 9
ifneq
($(HPUX_MAJOR), 09)
CFLAGS
+=
-DHPUX_10
endif
# HP-UX 10 has a select() in libcurses, so we need to get the libc version first
# HP-UX 10 has a select() in libcurses, so we need to get the libc version first
ifeq
($(HPUX_MAJOR), 10)
# We also want to be sure we get the POSIX signal routines in libc,
# not the BSD-like ones in libBSD.
ifneq
($(HPUX_MAJOR), 09)
LDFLAGS
:=
-Wl
,-E
-lc
$(
LDFLAGS
)
LDFLAGS
:=
-Wl
,-E
-lc
$(
LDFLAGS
)
endif
endif
# HP-UX 09 needs libc before libPW, so we need to get the libc version first
# HP-UX 09 provides rint() only in PA1.1 version of libm, so add -L command
# to get that version. (CAUTION: you need PHSS_4630 to have a working version
# of rint()!) Also, libPW exists on this platform but is not helpful, so
# delete it from LDFLAGS.
# NOTE: libBSD must be loaded before libc to get BSD signal() semantics.
ifeq
($(HPUX_MAJOR), 09)
ifeq
($(HPUX_MAJOR), 09)
LDFLAGS
:=
-Wl
,-E
$(
LDFLAGS:-lPW
=
-lc
-lPW
)
LDFLAGS
:=
-Wl
,-E
-L
/lib/pa1.1
$(
LDFLAGS:-lPW
=
)
endif
endif
# On all HPUX versions, embed LIBDIR as the shared library search path
# so that the executables don't need SHLIB_PATH to be set.
LDFLAGS
+=
-Wl
,+b
-Wl
,
$(
LIBDIR
)
# Does anyone use this stuff?
# Does anyone use this stuff?
#ifdef ENFORCE_ALIGNMENT
#ifdef ENFORCE_ALIGNMENT
# CFLAGS+= -DNOFIXADE
# CFLAGS+= -DNOFIXADE
...
...
This diff is collapsed.
Click to expand it.
src/tools/backend/index.html
+
1
−
1
View file @
f8a47462
...
@@ -123,7 +123,7 @@ HREF="../../include/storage/lock.h">LOCKMETHODCTL</A>).
...
@@ -123,7 +123,7 @@ HREF="../../include/storage/lock.h">LOCKMETHODCTL</A>).
HREF=
"../../include/storage/lock.h"
>
LOCK
</A>
structure, looked up using
HREF=
"../../include/storage/lock.h"
>
LOCK
</A>
structure, looked up using
relation, database object ids(
<A
relation, database object ids(
<A
HREF=
"../../include/storage/lock.h"
>
LOCKTAG)
</A>
. The lock table structure contains the
HREF=
"../../include/storage/lock.h"
>
LOCKTAG)
</A>
. The lock table structure contains the
lock modes(read
,
write) and circular linked list of backends (
<A
lock modes(read
/
write
or shared/exclusive
) and circular linked list of backends (
<A
HREF=
"../../include/storage/proc.h"
>
PROC
</A>
structure pointers) waiting
HREF=
"../../include/storage/proc.h"
>
PROC
</A>
structure pointers) waiting
on the lock.
on the lock.
<LI>
MultiLevelLockTable (xid hash) - lookup of LOCK structure address
<LI>
MultiLevelLockTable (xid hash) - lookup of LOCK structure address
...
...
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