mirror of
https://github.com/postgres/postgres.git
synced 2025-05-31 00:01:57 -04:00
Add sentence-ending periods.
This commit is contained in:
parent
b7210a07a9
commit
156d648025
@ -6,7 +6,7 @@
|
||||
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/port/win32_shmem.c,v 1.2 2007/03/28 08:06:11 mha Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/port/win32_shmem.c,v 1.3 2007/11/08 14:47:41 petere Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -136,7 +136,7 @@ PGSharedMemoryCreate(Size size, bool makePrivate, int port)
|
||||
if (!hmap)
|
||||
ereport(FATAL,
|
||||
(errmsg("could not create shared memory segment: %lu", GetLastError()),
|
||||
errdetail("Failed system call was CreateFileMapping(size=%lu, name=%s)",
|
||||
errdetail("Failed system call was CreateFileMapping(size=%lu, name=%s).",
|
||||
(unsigned long) size, szShareMem)));
|
||||
|
||||
/*
|
||||
@ -159,7 +159,7 @@ PGSharedMemoryCreate(Size size, bool makePrivate, int port)
|
||||
if (!hmap)
|
||||
ereport(FATAL,
|
||||
(errmsg("could not create shared memory segment: %lu", GetLastError()),
|
||||
errdetail("Failed system call was CreateFileMapping(size=%lu, name=%s)",
|
||||
errdetail("Failed system call was CreateFileMapping(size=%lu, name=%s).",
|
||||
(unsigned long) size, szShareMem)));
|
||||
|
||||
if (GetLastError() == ERROR_ALREADY_EXISTS)
|
||||
@ -176,7 +176,7 @@ PGSharedMemoryCreate(Size size, bool makePrivate, int port)
|
||||
if (!DuplicateHandle(GetCurrentProcess(), hmap, GetCurrentProcess(), &hmap2, 0, TRUE, DUPLICATE_SAME_ACCESS))
|
||||
ereport(FATAL,
|
||||
(errmsg("could not create shared memory segment: %lu", GetLastError()),
|
||||
errdetail("Failed system call was DuplicateHandle")));
|
||||
errdetail("Failed system call was DuplicateHandle.")));
|
||||
|
||||
/*
|
||||
* Close the old, non-inheritable handle. If this fails we don't really
|
||||
@ -197,7 +197,7 @@ PGSharedMemoryCreate(Size size, bool makePrivate, int port)
|
||||
if (!memAddress)
|
||||
ereport(FATAL,
|
||||
(errmsg("could not create shared memory segment: %lu", GetLastError()),
|
||||
errdetail("Failed system call was MapViewOfFileEx")));
|
||||
errdetail("Failed system call was MapViewOfFileEx.")));
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user