Re: race condition on looking up inodes

2001-04-08 Thread Bernd Eckenfels
In article <000201c0c0a4$eb5c7b10$321ea8c0@saturn> you wrote: >rename("/usr/hybrid/cfg/data","/usr/mytemp/data1"); /*for process 1*/ > rename("/usr/mytemp/data1","/usr/test");/* for process 2*/ Rename syscall is expected to be atomic on unixoid systems. And I dont know of a case where a prob

Re: race condition on looking up inodes

2001-04-08 Thread Alexander Viro
On Mon, 9 Apr 2001, warren wrote: > > > Hi, > I had post a simillar message before. > Thanks for the replay from Albert D. Cahalan. But i found some results > confusing me. > For example, process 1 and process 2 run concurrently and execute the > following system calls. > >