【memory barrier】Should we update the README.barrier description. - Mailing list pgsql-docs

From postgresql_2016@163.com
Subject 【memory barrier】Should we update the README.barrier description.
Date
Msg-id 1589072465169-0.post@n3.nabble.com
Whole thread Raw
Responses Re: 【memory barrier】Should we update the README.barrier description.
List pgsql-docs
Hi

When I read the introduction of Weaknesses of Memory Barriers in
README.barrier, the following maybe out-of-date now. 

Even very simple write operations often require additional synchronization.
For example, it's not safe for multiple writers to simultaneously execute
this code (supposing x is a pointer into shared memory):

    x->foo++;

Although this may compile down to a single machine-language instruction,
the CPU will execute that instruction by reading the current value of foo,
adding one to it, and then storing the result back to the original address.
If two CPUs try to do this simultaneously, both may do their reads before
either one does their writes.  *Eventually we might be able to use an atomic
fetch-and-add instruction for this specific case on architectures that
support
it, but we can't rely on that being available everywhere, and we currently
have no support for it at all.  Use a lock.*

Now, the postgres has support atomic operation and use it, in some cases we
have not use the lock.



--
Sent from: https://www.postgresql-archive.org/PostgreSQL-docs-f2165602.html



pgsql-docs by date:

Previous
From: Euler Taveira
Date:
Subject: Re: Logical replication subscription owner
Next
From: Tom Lane
Date:
Subject: Re: Another modest proposal for docs formatting: catalog descriptions