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
69a46e9c
Commit
69a46e9c
authored
Sep 12, 2003
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable Opteron/Itanium spinlocks.
parent
9182481b
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
39 additions
and
5 deletions
+39
-5
src/include/port/bsdi.h
src/include/port/bsdi.h
+6
-2
src/include/port/freebsd.h
src/include/port/freebsd.h
+6
-1
src/include/port/netbsd.h
src/include/port/netbsd.h
+6
-1
src/include/port/openbsd.h
src/include/port/openbsd.h
+6
-1
src/include/port/sco.h
src/include/port/sco.h
+5
-0
src/include/port/univel.h
src/include/port/univel.h
+5
-0
src/include/port/unixware.h
src/include/port/unixware.h
+5
-0
No files found.
src/include/port/bsdi.h
View file @
69a46e9c
#if defined(__i386__)
#if defined(__i386__)
|| defined(__x86_64__)
#define NEED_I386_TAS_ASM
#define NEED_I386_TAS_ASM
typedef
unsigned
char
slock_t
;
#endif
#if defined(__ia64)
typedef
unsigned
int
slock_t
;
#endif
#endif
#if defined(__sparc__)
#if defined(__sparc__)
#define NEED_SPARC_TAS_ASM
#define NEED_SPARC_TAS_ASM
typedef
unsigned
char
slock_t
;
#endif
#endif
#define HAS_TEST_AND_SET
#define HAS_TEST_AND_SET
typedef
unsigned
char
slock_t
;
src/include/port/freebsd.h
View file @
69a46e9c
#if defined(__i386__)
#if defined(__i386__)
|| defined(__x86_64__)
#define NEED_I386_TAS_ASM
#define NEED_I386_TAS_ASM
#define HAS_TEST_AND_SET
#define HAS_TEST_AND_SET
typedef
unsigned
char
slock_t
;
typedef
unsigned
char
slock_t
;
#endif
#endif
#if defined(__ia64)
#define HAS_TEST_AND_SET
typedef
unsigned
int
slock_t
;
#endif
#if defined(__sparc__)
#if defined(__sparc__)
#define NEED_SPARC_TAS_ASM
#define NEED_SPARC_TAS_ASM
#define HAS_TEST_AND_SET
#define HAS_TEST_AND_SET
...
...
src/include/port/netbsd.h
View file @
69a46e9c
#if defined(__i386__)
#if defined(__i386__)
|| defined(__x86_64__)
#define NEED_I386_TAS_ASM
#define NEED_I386_TAS_ASM
#define HAS_TEST_AND_SET
#define HAS_TEST_AND_SET
typedef
unsigned
char
slock_t
;
typedef
unsigned
char
slock_t
;
#endif
#endif
#if defined(__ia64)
#define HAS_TEST_AND_SET
typedef
unsigned
int
slock_t
;
#endif
#if defined(__sparc__)
#if defined(__sparc__)
#define NEED_SPARC_TAS_ASM
#define NEED_SPARC_TAS_ASM
#define HAS_TEST_AND_SET
#define HAS_TEST_AND_SET
...
...
src/include/port/openbsd.h
View file @
69a46e9c
#if defined(__i386__)
#if defined(__i386__)
|| defined(__x86_64__)
#define NEED_I386_TAS_ASM
#define NEED_I386_TAS_ASM
#define HAS_TEST_AND_SET
#define HAS_TEST_AND_SET
typedef
unsigned
char
slock_t
;
typedef
unsigned
char
slock_t
;
#endif
#endif
#if defined(__ia64)
#define HAS_TEST_AND_SET
typedef
unsigned
int
slock_t
;
#endif
#if defined(__sparc__)
#if defined(__sparc__)
#define NEED_SPARC_TAS_ASM
#define NEED_SPARC_TAS_ASM
#define HAS_TEST_AND_SET
#define HAS_TEST_AND_SET
...
...
src/include/port/sco.h
View file @
69a46e9c
...
@@ -6,7 +6,12 @@
...
@@ -6,7 +6,12 @@
#define USE_UNIVEL_CC
#define USE_UNIVEL_CC
#if defined(__ia64)
typedef
unsigned
int
slock_t
;
#else
typedef
unsigned
char
slock_t
;
typedef
unsigned
char
slock_t
;
#endif
#ifndef BIG_ENDIAN
#ifndef BIG_ENDIAN
#define BIG_ENDIAN 4321
#define BIG_ENDIAN 4321
...
...
src/include/port/univel.h
View file @
69a46e9c
...
@@ -7,7 +7,12 @@
...
@@ -7,7 +7,12 @@
***************************************/
***************************************/
#define USE_UNIVEL_CC
#define USE_UNIVEL_CC
#if defined(__ia64)
typedef
unsigned
int
slock_t
;
#else
typedef
unsigned
char
slock_t
;
typedef
unsigned
char
slock_t
;
#endif
#ifndef BIG_ENDIAN
#ifndef BIG_ENDIAN
#define BIG_ENDIAN 4321
#define BIG_ENDIAN 4321
...
...
src/include/port/unixware.h
View file @
69a46e9c
...
@@ -10,7 +10,12 @@
...
@@ -10,7 +10,12 @@
***************************************/
***************************************/
#define USE_UNIVEL_CC
#define USE_UNIVEL_CC
#if defined(__ia64)
typedef
unsigned
int
slock_t
;
#else
typedef
unsigned
char
slock_t
;
typedef
unsigned
char
slock_t
;
#endif
#ifndef BIG_ENDIAN
#ifndef BIG_ENDIAN
#define BIG_ENDIAN 4321
#define BIG_ENDIAN 4321
...
...
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