From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
---|---|
To: | Andreas Pflug <pgadmin(at)pse-consulting(dot)de> |
Cc: | PostgreSQL Patches <pgsql-patches(at)postgresql(dot)org> |
Subject: | Re: thread safety testing fix |
Date: | 2004-05-28 18:37:14 |
Message-ID: | 200405281837.i4SIbEj01717@candle.pha.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-patches |
Thanks. Fixed.
---------------------------------------------------------------------------
Andreas Pflug wrote:
> When checking for thread safety with src/tools/thread/thread_test.c, the
> mktemp function wants an argument that contains 6 X, while the current
> version only supplies 5 X which will fail on my SuSE 8.1.
>
> Patch attached.
>
>
> Regards,
> Andreas
> Index: thread_test.c
> ===================================================================
> RCS file: /projects/cvsroot/pgsql-server/src/tools/thread/thread_test.c,v
> retrieving revision 1.29
> diff -u -r1.29 thread_test.c
> --- thread_test.c 27 Apr 2004 19:51:12 -0000 1.29
> +++ thread_test.c 28 May 2004 11:39:00 -0000
> @@ -64,8 +64,8 @@
> void func_call_1(void);
> void func_call_2(void);
>
> -#define TEMP_FILENAME_1 "/tmp/thread_test.1.XXXXX"
> -#define TEMP_FILENAME_2 "/tmp/thread_test.2.XXXXX"
> +#define TEMP_FILENAME_1 "/tmp/thread_test.1.XXXXXX"
> +#define TEMP_FILENAME_2 "/tmp/thread_test.2.XXXXXX"
>
> char *temp_filename_1;
> char *temp_filename_2;
>
> ---------------------------(end of broadcast)---------------------------
> TIP 7: don't forget to increase your free space map settings
--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
From | Date | Subject | |
---|---|---|---|
Next Message | Thomas Hallgren | 2004-05-28 18:44:05 | Re: Link errors on win32 |
Previous Message | Bruce Momjian | 2004-05-28 18:34:51 | Re: Re : Win32 binaries test / pg_dump problem |