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
0476bbbc
Commit
0476bbbc
authored
20 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Several Cygwin fixes pointed out by Reini Urban.
parent
f94aea9c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/backend/utils/mmgr/mcxt.c
+3
-2
3 additions, 2 deletions
src/backend/utils/mmgr/mcxt.c
src/port/dirmod.c
+12
-3
12 additions, 3 deletions
src/port/dirmod.c
with
15 additions
and
5 deletions
src/backend/utils/mmgr/mcxt.c
+
3
−
2
View file @
0476bbbc
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/mmgr/mcxt.c,v 1.4
7
2004/08/
08 06:44:32
momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/mmgr/mcxt.c,v 1.4
8
2004/08/
29 02:58:50
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -631,7 +631,7 @@ MemoryContextStrdup(MemoryContext context, const char *string)
...
@@ -631,7 +631,7 @@ MemoryContextStrdup(MemoryContext context, const char *string)
}
}
#ifdef
WIN32
#if
def
ined(WIN32) || defined(__CYGWIN__)
/*
/*
* Memory support routines for libpgport on Win32
* Memory support routines for libpgport on Win32
*
*
...
@@ -649,6 +649,7 @@ pgport_palloc(Size sz)
...
@@ -649,6 +649,7 @@ pgport_palloc(Size sz)
return
palloc
(
sz
);
return
palloc
(
sz
);
}
}
char
*
char
*
pgport_pstrdup
(
const
char
*
str
)
pgport_pstrdup
(
const
char
*
str
)
{
{
...
...
This diff is collapsed.
Click to expand it.
src/port/dirmod.c
+
12
−
3
View file @
0476bbbc
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
* Win32 (NT, Win2k, XP). replace() doesn't work on Win95/98/Me.
* Win32 (NT, Win2k, XP). replace() doesn't work on Win95/98/Me.
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/dirmod.c,v 1.
19
2004/08/29 0
1:44:02
momjian Exp $
* $PostgreSQL: pgsql/src/port/dirmod.c,v 1.
20
2004/08/29 0
2:58:50
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -31,18 +31,27 @@
...
@@ -31,18 +31,27 @@
#if defined(WIN32) || defined(__CYGWIN__)
#if defined(WIN32) || defined(__CYGWIN__)
#include
"miscadmin.h"
#include
"miscadmin.h"
#include
<winioctl.h>
#undef rename
#undef rename
#undef unlink
#undef unlink
#ifdef __WIN32__
#include
<winioctl.h>
#else
/* __CYGWIN__ */
#include
<windows.h>
#include
<w32api/winioctl.h>
#endif
#ifndef FRONTEND
#ifndef FRONTEND
/*
/*
* Call non-macro versions of palloc, can't reference CurrentMemoryContext
* Call non-macro versions of palloc, can't reference CurrentMemoryContext
* because of DLLIMPORT.
* because of DLLIMPORT.
*/
*/
#undef palloc
#undef pstrdup
#undef pfree
#define palloc(sz) pgport_palloc(sz)
#define palloc(sz) pgport_palloc(sz)
#define pstrdup(str) pgport_pstrdup(str)
#define pstrdup(str) pgport_pstrdup(str)
#define pfree(pointer) pgport_pfree(pointer)
#define pfree(pointer) pgport_pfree(pointer)
...
...
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