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
f9322c66
Commit
f9322c66
authored
May 04, 1998
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missed the __alpha__ to __alpha change...
From: David Gould <dg@illustra.com>
parent
c73e1869
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
src/backend/storage/buffer/s_lock.c
src/backend/storage/buffer/s_lock.c
+3
-3
src/include/port/linux.h
src/include/port/linux.h
+1
-1
src/include/storage/s_lock.h
src/include/storage/s_lock.h
+5
-5
No files found.
src/backend/storage/buffer/s_lock.c
View file @
f9322c66
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/buffer/Attic/s_lock.c,v 1.
6 1998/05/04 16:58:38
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/buffer/Attic/s_lock.c,v 1.
7 1998/05/04 23:49:09
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -92,7 +92,7 @@ s_lock_stuck(slock_t *lock, char *file, int line)
...
@@ -92,7 +92,7 @@ s_lock_stuck(slock_t *lock, char *file, int line)
*/
*/
#if defined(__alpha
__
)
#if defined(__alpha)
int
int
tas
(
slock_t
*
lock
)
tas
(
slock_t
*
lock
)
{
{
...
@@ -114,7 +114,7 @@ tas(slock_t *lock)
...
@@ -114,7 +114,7 @@ tas(slock_t *lock)
return
(
_res
!=
0
);
return
(
_res
!=
0
);
}
}
#endif
/* __alpha
__
*/
#endif
/* __alpha */
...
...
src/include/port/linux.h
View file @
f9322c66
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
#if defined(PPC)
#if defined(PPC)
typedef
unsigned
int
slock_t
;
typedef
unsigned
int
slock_t
;
#elif defined(__alpha
__
)
#elif defined(__alpha)
typedef
long
int
slock_t
;
typedef
long
int
slock_t
;
#else
/* i386 probably */
#else
/* i386 probably */
...
...
src/include/storage/s_lock.h
View file @
f9322c66
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.3
2 1998/05/04 16:58:59
scrappy Exp $
* $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.3
3 1998/05/04 23:49:17
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -74,11 +74,11 @@
...
@@ -74,11 +74,11 @@
* All Linux
* All Linux
*/
*/
#if defined(__alpha
__
)
#if defined(__alpha)
#define S_UNLOCK(lock) { __asm__("mb"); *(lock) = 0; }
#define S_UNLOCK(lock) { __asm__("mb"); *(lock) = 0; }
#endif
/* __alpha
__
*/
#endif
/* __alpha */
...
@@ -129,7 +129,7 @@
...
@@ -129,7 +129,7 @@
#if (defined(__alpha
__
)
#if (defined(__alpha)
/*
/*
* OSF/1 (Alpha AXP)
* OSF/1 (Alpha AXP)
*
*
...
@@ -144,7 +144,7 @@
...
@@ -144,7 +144,7 @@
#define S_LOCK_FREE(lock) (!(lock)->msem_state)
#define S_LOCK_FREE(lock) (!(lock)->msem_state)
#endif
/* __alpha
__
*/
#endif
/* __alpha */
...
...
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