Replace time_t with pg_time_t (same values, but always int64) in on-disk
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 17 Feb 2008 02:09:32 +0000 (02:09 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 17 Feb 2008 02:09:32 +0000 (02:09 +0000)
data structures and backend internal APIs.  This solves problems we've seen
recently with inconsistent layout of pg_control between machines that have
32-bit time_t and those that have already migrated to 64-bit time_t.  Also,
we can get out from under the problem that Windows' Unix-API emulation is not
consistent about the width of time_t.

There are a few remaining places where local time_t variables are used to hold
the current or recent result of time(NULL).  I didn't bother changing these
since they do not affect any cross-module APIs and surely all platforms will
have 64-bit time_t before overflow becomes an actual risk.  time_t should
be avoided for anything visible to extension modules, however.

17 files changed:
contrib/pgcrypto/internal.c
src/backend/access/transam/xlog.c
src/backend/postmaster/bgwriter.c
src/backend/postmaster/syslogger.c
src/backend/utils/adt/date.c
src/backend/utils/adt/datetime.c
src/backend/utils/adt/nabstime.c
src/backend/utils/adt/timestamp.c
src/backend/utils/init/globals.c
src/bin/pg_controldata/pg_controldata.c
src/bin/pg_resetxlog/pg_resetxlog.c
src/include/access/xlog_internal.h
src/include/catalog/pg_control.h
src/include/miscadmin.h
src/include/port/win32.h
src/include/utils/timestamp.h
src/tools/msvc/Project.pm

index 171a54ccc01e5bf09070727ab5f2e2a641c37a85..2d6efb255882d3eaeac3ecd89e1ecfbde456972f 100644 (file)
@@ -649,7 +649,8 @@ system_reseed(void)
                skip = 1;
        else if ((t - seed_time) > SYSTEM_RESEED_MAX)
                skip = 0;
-       else if (!check_time || (t - check_time) > SYSTEM_RESEED_CHECK_TIME)
+       else if (check_time == 0 ||
+                        (t - check_time) > SYSTEM_RESEED_CHECK_TIME)
        {
                check_time = t;
 
index ba8a3b661620a3254ae72312a9a7c125419b2b20..6f6be205b4798c5ba1ffc2a7d081e7e86e5ecb66 100644 (file)
@@ -271,7 +271,7 @@ typedef struct XLogCtlWrite
 {
        XLogwrtResult LogwrtResult; /* current value of LogwrtResult */
        int                     curridx;                /* cache index of next block to write */
-       time_t          lastSegSwitchTime;              /* time of last xlog segment switch */
+       pg_time_t       lastSegSwitchTime;              /* time of last xlog segment switch */
 } XLogCtlWrite;
 
 /*
@@ -1553,7 +1553,7 @@ XLogWrite(XLogwrtRqst WriteRqst, bool flexible, bool xlog_switch)
                                if (XLogArchivingActive())
                                        XLogArchiveNotifySeg(openLogId, openLogSeg);
 
-                               Write->lastSegSwitchTime = time(NULL);
+                               Write->lastSegSwitchTime = (pg_time_t) time(NULL);
 
                                /*
                                 * Signal bgwriter to start a checkpoint if we've consumed too
@@ -4217,7 +4217,7 @@ BootStrapXLOG(void)
        checkPoint.nextOid = FirstBootstrapObjectId;
        checkPoint.nextMulti = FirstMultiXactId;
        checkPoint.nextMultiOffset = 0;
-       checkPoint.time = time(NULL);
+       checkPoint.time = (pg_time_t) time(NULL);
 
        ShmemVariableCache->nextXid = checkPoint.nextXid;
        ShmemVariableCache->nextOid = checkPoint.nextOid;
@@ -4972,7 +4972,7 @@ StartupXLOG(void)
                ControlFile->checkPointCopy = checkPoint;
                if (minRecoveryLoc.xlogid != 0 || minRecoveryLoc.xrecoff != 0)
                        ControlFile->minRecoveryPoint = minRecoveryLoc;
-               ControlFile->time = time(NULL);
+               ControlFile->time = (pg_time_t) time(NULL);
                UpdateControlFile();
 
                /*
@@ -5277,7 +5277,7 @@ StartupXLOG(void)
        InRecovery = false;
 
        ControlFile->state = DB_IN_PRODUCTION;
-       ControlFile->time = time(NULL);
+       ControlFile->time = (pg_time_t) time(NULL);
        UpdateControlFile();
 
        /* start the archive_timeout timer running */
@@ -5496,10 +5496,10 @@ GetInsertRecPtr(void)
 /*
  * Get the time of the last xlog segment switch
  */
-time_t
+pg_time_t
 GetLastSegSwitchTime(void)
 {
-       time_t          result;
+       pg_time_t       result;
 
        /* Need WALWriteLock, but shared lock is sufficient */
        LWLockAcquire(WALWriteLock, LW_SHARED);
@@ -5676,7 +5676,7 @@ CreateCheckPoint(int flags)
        if (shutdown)
        {
                ControlFile->state = DB_SHUTDOWNING;
-               ControlFile->time = time(NULL);
+               ControlFile->time = (pg_time_t) time(NULL);
                UpdateControlFile();
        }
 
@@ -5690,7 +5690,7 @@ CreateCheckPoint(int flags)
        /* Begin filling in the checkpoint WAL record */
        MemSet(&checkPoint, 0, sizeof(checkPoint));
        checkPoint.ThisTimeLineID = ThisTimeLineID;
-       checkPoint.time = time(NULL);
+       checkPoint.time = (pg_time_t) time(NULL);
 
        /*
         * We must hold WALInsertLock while examining insert state to determine
@@ -5891,7 +5891,7 @@ CreateCheckPoint(int flags)
        ControlFile->prevCheckPoint = ControlFile->checkPoint;
        ControlFile->checkPoint = ProcLastRecPtr;
        ControlFile->checkPointCopy = checkPoint;
-       ControlFile->time = time(NULL);
+       ControlFile->time = (pg_time_t) time(NULL);
        UpdateControlFile();
        LWLockRelease(ControlFileLock);
 
@@ -5992,7 +5992,7 @@ RecoveryRestartPoint(const CheckPoint *checkPoint)
         * Checking true elapsed time keeps us from doing restartpoints too often
         * while rapidly scanning large amounts of WAL.
         */
-       elapsed_secs = time(NULL) - ControlFile->time;
+       elapsed_secs = (pg_time_t) time(NULL) - ControlFile->time;
        if (elapsed_secs < CheckPointTimeout / 2)
                return;
 
@@ -6028,7 +6028,7 @@ RecoveryRestartPoint(const CheckPoint *checkPoint)
        ControlFile->prevCheckPoint = ControlFile->checkPoint;
        ControlFile->checkPoint = ReadRecPtr;
        ControlFile->checkPointCopy = *checkPoint;
-       ControlFile->time = time(NULL);
+       ControlFile->time = (pg_time_t) time(NULL);
        UpdateControlFile();
 
        ereport((recoveryLogRestartpoints ? LOG : DEBUG2),
index 4a1a0552bdb78bee0c669110b2270163b8e76176..97b6b3c2d44f472565d21e158fc63e41e7c5804f 100644 (file)
@@ -163,12 +163,12 @@ static bool am_bg_writer = false;
 static bool ckpt_active = false;
 
 /* these values are valid when ckpt_active is true: */
-static time_t ckpt_start_time;
+static pg_time_t ckpt_start_time;
 static XLogRecPtr ckpt_start_recptr;
 static double ckpt_cached_elapsed;
 
-static time_t last_checkpoint_time;
-static time_t last_xlog_switch_time;
+static pg_time_t last_checkpoint_time;
+static pg_time_t last_xlog_switch_time;
 
 /* Prototypes for private functions */
 
@@ -250,7 +250,7 @@ BackgroundWriterMain(void)
        /*
         * Initialize so that first time-driven event happens at the correct time.
         */
-       last_checkpoint_time = last_xlog_switch_time = time(NULL);
+       last_checkpoint_time = last_xlog_switch_time = (pg_time_t) time(NULL);
 
        /*
         * Create a resource owner to keep track of our resources (currently only
@@ -361,7 +361,7 @@ BackgroundWriterMain(void)
        {
                bool            do_checkpoint = false;
                int                     flags = 0;
-               time_t          now;
+               pg_time_t       now;
                int                     elapsed_secs;
 
                /*
@@ -407,7 +407,7 @@ BackgroundWriterMain(void)
                 * occurs without an external request, but we set the CAUSE_TIME flag
                 * bit even if there is also an external request.
                 */
-               now = time(NULL);
+               now = (pg_time_t) time(NULL);
                elapsed_secs = now - last_checkpoint_time;
                if (elapsed_secs >= CheckPointTimeout)
                {
@@ -504,13 +504,13 @@ BackgroundWriterMain(void)
 static void
 CheckArchiveTimeout(void)
 {
-       time_t          now;
-       time_t          last_time;
+       pg_time_t       now;
+       pg_time_t       last_time;
 
        if (XLogArchiveTimeout <= 0)
                return;
 
-       now = time(NULL);
+       now = (pg_time_t) time(NULL);
 
        /* First we do a quick check using possibly-stale local state. */
        if ((int) (now - last_xlog_switch_time) < XLogArchiveTimeout)
@@ -730,7 +730,7 @@ IsCheckpointOnSchedule(double progress)
         * Check progress against time elapsed and checkpoint_timeout.
         */
        gettimeofday(&now, NULL);
-       elapsed_time = ((double) (now.tv_sec - ckpt_start_time) +
+       elapsed_time = ((double) ((pg_time_t) now.tv_sec - ckpt_start_time) +
                                        now.tv_usec / 1000000.0) / CheckPointTimeout;
 
        if (progress < elapsed_time)
index 9a108b4e6200f623942415359d546895c0c8cb85..4f79d01a319ef66d4e19c7fdb6fb38bcc5c0f45c 100644 (file)
@@ -331,7 +331,7 @@ SysLoggerMain(int argc, char *argv[])
                if (!rotation_requested && Log_RotationAge > 0)
                {
                        /* Do a logfile rotation if it's time */
-                       pg_time_t       now = time(NULL);
+                       pg_time_t       now = (pg_time_t) time(NULL);
 
                        if (now >= next_rotation_time)
                                rotation_requested = time_based_rotation = true;
index 745d9d5b2e138676ac6a5d8f323d407c97cc605f..0c1bdda174f1a7af3f581be8ff38c062af963dc8 100644 (file)
@@ -945,8 +945,10 @@ tm2time(struct pg_tm * tm, fsec_t fsec, TimeADT *result)
 
 /* time2tm()
  * Convert time data type to POSIX time structure.
- * For dates within the system-supported time_t range, convert to the
- *     local time zone. If out of this range, leave as GMT. - tgl 97/05/27
+ *
+ * For dates within the range of pg_time_t, convert to the local time zone.
+ * If out of this range, leave as UTC (in practice that could only happen
+ * if pg_time_t is just 32 bits) - thomas 97/05/27
  */
 static int
 time2tm(TimeADT time, struct pg_tm * tm, fsec_t *fsec)
@@ -2466,10 +2468,9 @@ timetz_zone(PG_FUNCTION_ARGS)
        if (tzp)
        {
                /* Get the offset-from-GMT that is valid today for the selected zone */
-               pg_time_t       now;
+               pg_time_t       now = (pg_time_t) time(NULL);
                struct pg_tm *tm;
 
-               now = time(NULL);
                tm = pg_localtime(&now, tzp);
                tz = -tm->tm_gmtoff;
        }
index 8584143905f8d699b8755d8ab97a34246471abf4..834aadead43b9569e99638ffe75bb56de10c2dae 100644 (file)
@@ -650,9 +650,11 @@ ParseDateTime(const char *timestr, char *workbuf, size_t buflen,
  *                             "20011225T040506.789-07"
  *
  * Use the system-provided functions to get the current time zone
- *     if not specified in the input string.
- * If the date is outside the time_t system-supported time range,
- *     then assume UTC time zone. - thomas 1997-05-27
+ * if not specified in the input string.
+ *
+ * If the date is outside the range of pg_time_t (in practice that could only
+ * happen if pg_time_t is just 32 bits), then assume UTC time zone - thomas
+ * 1997-05-27
  */
 int
 DecodeDateTime(char **field, int *ftype, int nf,
index f548dee095bfe26f95970974c2e3e93d19092482..992f7ab8b9431852200b328d51c0545a1160be46 100644 (file)
@@ -86,6 +86,8 @@ static void parsetinterval(char *i_string,
  * GetCurrentAbsoluteTime()
  *
  * Get the current system time (relative to Unix epoch).
+ *
+ * NB: this will overflow in 2038; it should be gone long before that.
  */
 AbsoluteTime
 GetCurrentAbsoluteTime(void)
@@ -1029,12 +1031,7 @@ tintervalrel(PG_FUNCTION_ARGS)
 Datum
 timenow(PG_FUNCTION_ARGS)
 {
-       time_t          sec;
-
-       if (time(&sec) < 0)
-               PG_RETURN_ABSOLUTETIME(INVALID_ABSTIME);
-
-       PG_RETURN_ABSOLUTETIME((AbsoluteTime) sec);
+       PG_RETURN_ABSOLUTETIME(GetCurrentAbsoluteTime());
 }
 
 /*
index 2883caf7167e81e19831d2eb6b4ca6d389b62fab..9b9087338ff0f05bc49f7d06ce33f66f2708779d 100644 (file)
@@ -1264,9 +1264,14 @@ TimestampDifferenceExceeds(TimestampTz start_time,
  *
  * We do not use time_t internally in Postgres, but this is provided for use
  * by functions that need to interpret, say, a stat(2) result.
+ *
+ * To avoid having the function's ABI vary depending on the width of time_t,
+ * we declare the argument as pg_time_t, which is cast-compatible with
+ * time_t but always 64 bits wide (unless the platform has no 64-bit type).
+ * This detail should be invisible to callers, at least at source code level.
  */
 TimestampTz
-time_t_to_timestamptz(time_t tm)
+time_t_to_timestamptz(pg_time_t tm)
 {
        TimestampTz result;
 
@@ -1284,17 +1289,22 @@ time_t_to_timestamptz(time_t tm)
  * Convert a TimestampTz to time_t.
  *
  * This too is just marginally useful, but some places need it.
+ *
+ * To avoid having the function's ABI vary depending on the width of time_t,
+ * we declare the result as pg_time_t, which is cast-compatible with
+ * time_t but always 64 bits wide (unless the platform has no 64-bit type).
+ * This detail should be invisible to callers, at least at source code level.
  */
-time_t
+pg_time_t
 timestamptz_to_time_t(TimestampTz t)
 {
-       time_t          result;
+       pg_time_t       result;
 
 #ifdef HAVE_INT64_TIMESTAMP
-       result = (time_t) (t / USECS_PER_SEC +
+       result = (pg_time_t) (t / USECS_PER_SEC +
                                 ((POSTGRES_EPOCH_JDATE - UNIX_EPOCH_JDATE) * SECS_PER_DAY));
 #else
-       result = (time_t) (t +
+       result = (pg_time_t) (t +
                                 ((POSTGRES_EPOCH_JDATE - UNIX_EPOCH_JDATE) * SECS_PER_DAY));
 #endif
 
index 4f7d2a4308feebed647e4905571ba0bfd407f75e..abe8e67fe00178de547418e669d26b398d4cd4ed 100644 (file)
@@ -33,7 +33,7 @@ volatile uint32 InterruptHoldoffCount = 0;
 volatile uint32 CritSectionCount = 0;
 
 int                    MyProcPid;
-time_t         MyStartTime;
+pg_time_t      MyStartTime;
 struct Port *MyProcPort;
 long           MyCancelKey;
 
index f466784c500100a32a62d9477ea2c61e40744fcc..2e6a5dc09a723bb2091ac2f4100e4a22545e0f50 100644 (file)
@@ -69,6 +69,7 @@ main(int argc, char *argv[])
        char            ControlFilePath[MAXPGPATH];
        char       *DataDir;
        pg_crc32        crc;
+       time_t          time_tmp;
        char            pgctime_str[128];
        char            ckpttime_str[128];
        char            sysident_str[32];
@@ -134,13 +135,20 @@ main(int argc, char *argv[])
                                 "is expecting.  The results below are untrustworthy.\n\n"));
 
        /*
+        * This slightly-chintzy coding will work as long as the control file
+        * timestamps are within the range of time_t; that should be the case
+        * in all foreseeable circumstances, so we don't bother importing the
+        * backend's timezone library into pg_controldata.
+        *
         * Use variable for format to suppress overly-anal-retentive gcc warning
         * about %c
         */
+       time_tmp = (time_t) ControlFile.time;
        strftime(pgctime_str, sizeof(pgctime_str), strftime_fmt,
-                        localtime(&(ControlFile.time)));
+                        localtime(&time_tmp));
+       time_tmp = (time_t) ControlFile.checkPointCopy.time;
        strftime(ckpttime_str, sizeof(ckpttime_str), strftime_fmt,
-                        localtime(&(ControlFile.checkPointCopy.time)));
+                        localtime(&time_tmp));
 
        /*
         * Format system_identifier separately to keep platform-dependent format
index d266817a8ca20ec7414952340d2ecada84d57c25..6e3504baacef8595424813f0c13a29d32a6395da 100644 (file)
@@ -471,10 +471,10 @@ GuessControlValues(void)
        ControlFile.checkPointCopy.nextOid = FirstBootstrapObjectId;
        ControlFile.checkPointCopy.nextMulti = FirstMultiXactId;
        ControlFile.checkPointCopy.nextMultiOffset = 0;
-       ControlFile.checkPointCopy.time = time(NULL);
+       ControlFile.checkPointCopy.time = (pg_time_t) time(NULL);
 
        ControlFile.state = DB_SHUTDOWNED;
-       ControlFile.time = time(NULL);
+       ControlFile.time = (pg_time_t) time(NULL);
        ControlFile.checkPoint = ControlFile.checkPointCopy.redo;
 
        ControlFile.maxAlign = MAXIMUM_ALIGNOF;
@@ -603,10 +603,10 @@ RewriteControlFile(void)
        ControlFile.checkPointCopy.redo.xlogid = newXlogId;
        ControlFile.checkPointCopy.redo.xrecoff =
                newXlogSeg * XLogSegSize + SizeOfXLogLongPHD;
-       ControlFile.checkPointCopy.time = time(NULL);
+       ControlFile.checkPointCopy.time = (pg_time_t) time(NULL);
 
        ControlFile.state = DB_SHUTDOWNED;
-       ControlFile.time = time(NULL);
+       ControlFile.time = (pg_time_t) time(NULL);
        ControlFile.checkPoint = ControlFile.checkPointCopy.redo;
        ControlFile.prevCheckPoint.xlogid = 0;
        ControlFile.prevCheckPoint.xrecoff = 0;
index 69585182417d739543cddde91f7e98bca56d4cb2..d33091f624b565842ac508cfbc28a9d4b620dc2c 100644 (file)
 #ifndef XLOG_INTERNAL_H
 #define XLOG_INTERNAL_H
 
-#include <time.h>
-
 #include "access/xlog.h"
 #include "fmgr.h"
+#include "pgtime.h"
 #include "storage/block.h"
 #include "storage/relfilenode.h"
 
@@ -71,7 +70,7 @@ typedef struct XLogContRecord
 /*
  * Each page of XLOG file has a header like this:
  */
-#define XLOG_PAGE_MAGIC 0xD062 /* can be used as WAL version indicator */
+#define XLOG_PAGE_MAGIC 0xD063 /* can be used as WAL version indicator */
 
 typedef struct XLogPageHeaderData
 {
@@ -242,7 +241,7 @@ extern const RmgrData RmgrTable[];
 /*
  * Exported to support xlog switching from bgwriter
  */
-extern time_t GetLastSegSwitchTime(void);
+extern pg_time_t GetLastSegSwitchTime(void);
 extern XLogRecPtr RequestXLogSwitch(void);
 
 /*
index 25e7777d299defbc99dd0d08a71cb4d4bfbc8206..2738cad817e54062a84eca44d0ce9d4b8c95f0b3 100644 (file)
 #ifndef PG_CONTROL_H
 #define PG_CONTROL_H
 
-#include <time.h>
-
 #include "access/xlogdefs.h"
+#include "pgtime.h"                            /* for pg_time_t */
 #include "utils/pg_crc.h"
 
 
 /* Version identifier for this pg_control format */
-#define PG_CONTROL_VERSION     833
+#define PG_CONTROL_VERSION     841
 
 /*
  * Body of CheckPoint XLOG records.  This is declared here because we keep
@@ -38,7 +37,7 @@ typedef struct CheckPoint
        Oid                     nextOid;                /* next free OID */
        MultiXactId nextMulti;          /* next free MultiXactId */
        MultiXactOffset nextMultiOffset;        /* next free MultiXact offset */
-       time_t          time;                   /* time stamp of checkpoint */
+       pg_time_t       time;                   /* time stamp of checkpoint */
 } CheckPoint;
 
 /* XLOG info values for XLOG rmgr */
@@ -99,7 +98,7 @@ typedef struct ControlFileData
         * System status data
         */
        DBState         state;                  /* see enum above */
-       time_t          time;                   /* time stamp of last pg_control update */
+       pg_time_t       time;                   /* time stamp of last pg_control update */
        XLogRecPtr      checkPoint;             /* last check point record ptr */
        XLogRecPtr      prevCheckPoint; /* previous check point record ptr */
 
index 100a8354fde31f7b034afc5cb09ae4aab1790ab0..9c848305e180574b16b18bbe76f808eb39554960 100644 (file)
@@ -23,7 +23,7 @@
 #ifndef MISCADMIN_H
 #define MISCADMIN_H
 
-#include <time.h>                              /* for time_t */
+#include "pgtime.h"                            /* for pg_time_t */
 
 
 #define PG_VERSIONSTR "postgres (PostgreSQL) " PG_VERSION "\n"
@@ -134,7 +134,7 @@ extern int  MaxBackends;
 extern int     MaxConnections;
 
 extern PGDLLIMPORT int MyProcPid;
-extern PGDLLIMPORT time_t MyStartTime;
+extern PGDLLIMPORT pg_time_t MyStartTime;
 extern PGDLLIMPORT struct Port *MyProcPort;
 extern long MyCancelKey;
 
index bd9f4619d8c4b3a94b8fd0a38426b5ba0f657bb4..fc65515fb51f690a7d3e1c724cfab072a62b86ef 100644 (file)
 
 #define USES_WINSOCK
 
-/*
- * Ensure that anyone building an extension is using a 32 bit time_t.
- * On Mingw/Msys, that should always be the case, but MSVC++ defaults
- * to 64 bits. We set that for our own build in the project files
- */
-#if defined(WIN32_ONLY_COMPILER) && !defined(FRONTEND)
-#ifndef _USE_32BIT_TIME_T
-#error "Postgres uses 32 bit time_t - add #define _USE_32BIT_TIME_T on Windows"
-#endif
-#endif
-
 /* defines for dynamic linking on Win32 platform */
 #if defined(WIN32) || defined(__CYGWIN__)
 
@@ -198,6 +187,7 @@ struct itimerval
        struct timeval it_interval;
        struct timeval it_value;
 };
+
 int                    setitimer(int which, const struct itimerval * value, struct itimerval * ovalue);
 
 
index e8603ecbf9a0d6e57772a959e5d1aaa6d5a6e972..34e6644487345203fea3daefc0a80ed09143cc44 100644 (file)
@@ -310,8 +310,8 @@ extern bool TimestampDifferenceExceeds(TimestampTz start_time,
                                                   TimestampTz stop_time,
                                                   int msec);
 
-extern TimestampTz time_t_to_timestamptz(time_t tm);
-extern time_t timestamptz_to_time_t(TimestampTz t);
+extern TimestampTz time_t_to_timestamptz(pg_time_t tm);
+extern pg_time_t timestamptz_to_time_t(TimestampTz t);
 
 extern const char *timestamptz_to_str(TimestampTz t);
 
index 14ae7a8052f3c7406b0381096a3c97d04f4b8245..36e120e066d234cb5766bbf0c3debbde520b7642 100644 (file)
@@ -494,7 +494,7 @@ sub WriteConfiguration
        ConfigurationType="$cfgtype" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" WholeProgramOptimization="$p->{wholeopt}">
        <Tool Name="VCCLCompilerTool" Optimization="$p->{opt}"
                AdditionalIncludeDirectories="$self->{prefixincludes}src/include;src/include/port/win32;src/include/port/win32_msvc;$self->{includes}"
-               PreprocessorDefinitions="WIN32;_WINDOWS;__WINDOWS__;__WIN32__;EXEC_BACKEND;WIN32_STACK_RLIMIT=4194304;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_USE_32BIT_TIME_T$self->{defines}$p->{defs}"
+               PreprocessorDefinitions="WIN32;_WINDOWS;__WINDOWS__;__WIN32__;EXEC_BACKEND;WIN32_STACK_RLIMIT=4194304;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE$self->{defines}$p->{defs}"
                StringPooling="$p->{strpool}"
                RuntimeLibrary="$p->{runtime}" DisableSpecificWarnings="$self->{disablewarnings}"
 EOF