提交 fa721215 编写于 作者: T Tom Lane

Fix another recently-changed place that was messing with spinlock-

protected data structures and not using a volatile pointer for same.
上级 07eeb9d1
......@@ -15,7 +15,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/storage/lmgr/lwlock.c,v 1.32 2005/10/07 21:42:38 tgl Exp $
* $PostgreSQL: pgsql/src/backend/storage/lmgr/lwlock.c,v 1.33 2005/10/12 16:55:59 tgl Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -226,7 +226,8 @@ LWLockId
LWLockAssign(void)
{
LWLockId result;
int *LWLockCounter;
/* use volatile pointer to prevent code rearrangement */
volatile int *LWLockCounter;
LWLockCounter = (int *) ((char *) LWLockArray - 2 * sizeof(int));
SpinLockAcquire(ShmemLock);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册