Absolute synchronization is possible among the processes A, B and C where one process writes to the shared memory while other two wait for the data to be written and the next process displays the stored data in the shared memory.
This way data is passed from one process to next process via a common shared memory as a busy wait scheme.
process A--> wrote : Hi process B catches up "Hi" & displays then process B writes : shared then process C catches up "shared" & displays then process C writes : memory then process A catches up "memory" & displays