Commit 7784c43a 7784c43afbbe8d4de630043d29b4b7592c7fbb05 by Sergey Poznyakoff

Updated

1 parent 6af68bc0
1 2002-12-15 Sergey Poznyakoff
2
3 * configure.ac: Raised version number to 0.2
4 * doc/texinfo/libmuauth.texi: Spellcheck.
5 * doc/texinfo/libsieve.texi: Likewise.
6 * TODO: Updated.
7
1 2002-12-14 Sergey Poznyakoff 8 2002-12-14 Sergey Poznyakoff
2 9
3 * mail/previous.c: Skip deleted messages 10 * mail/previous.c: Skip deleted messages
......
...@@ -45,6 +45,11 @@ IMPORTANT: ...@@ -45,6 +45,11 @@ IMPORTANT:
45 45
46 [mailbox] 46 [mailbox]
47 47
48 - iterator_t is very ineffective. Traversing the list from iterator_first()
49 till iterator_is_done() takes O(n*(n+1)/2), where n is number of elements
50 in the list. To reduce this to O(n), iterator_t must keep the address
51 of the last visited item in the list.
52
48 - locking: 53 - locking:
49 54
50 - implement a read/write locker_lock() flag so that when MU_LOCKER_WRONLY 55 - implement a read/write locker_lock() flag so that when MU_LOCKER_WRONLY
......