Call fsync() in log_write().
[pwmd.git] / TODO
blobced56373a675c5c5ef6aea51e0d641d9f3104546
1 If an element has a TARGET attribute, should following elements be inherited
2 from the target?:
3     
4     list orig
5     BEGIN ...
6     orig element1 element2 value
7     OK
8     attr set target new orig
9     OK
10     get new element1
11     BEGIN ...
12     new element2 value
13     OK
15 File locking. pwmd will return old data if client1 connects and opens a file,
16 then client2 connects opening the same file, client1 modifies data and saves
17 the file, client2 gets some data that may have been modified by client1. Might
18 be as simple as adding a flag in the file cache to reopen the file or just
19 deny writing until all other clients have exited.