What would happen on Linux if:
$F=fopen("hello ","wb");
lock $F
write to $F
rename "hello" as "mango"
close $F
Will mango contain upto date data ? Or will the rename cause it to
contain incomplete data ?
(I could have checked, but don't have Linux with me.)
Mike
$F=fopen("hello ","wb");
lock $F
write to $F
rename "hello" as "mango"
close $F
Will mango contain upto date data ? Or will the rename cause it to
contain incomplete data ?
(I could have checked, but don't have Linux with me.)
Mike
Comment