summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2016-03-03
|\ \
* | | fix windows buildGravatar Joey Hess2016-03-03
| | |
| * | (no commit message)Gravatar Horus2016-03-03
| | |
| * | (no commit message)Gravatar frederik@ffbea6a549cb3f460d110386c0f634c1ddc6a68a2016-03-03
| | |
| * | (no commit message)Gravatar chip@9a7a3f3780ecacd7b38b0b0adad50046c9b2895b2016-03-03
| | |
| * | (no commit message)Gravatar chip@9a7a3f3780ecacd7b38b0b0adad50046c9b2895b2016-03-03
| | |
| * | Added a comment: ThanksGravatar mih2016-03-02
|/ /
* | commentGravatar Joey Hess2016-03-02
| |
* | Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2016-03-02
|\ \
* | | Fix metadata hook behavior when multiple files are added at once. Thanks, ↵Gravatar Joey Hess2016-03-02
| | | | | | | | | | | | Klaus Ethgen.
| * | Added a commentGravatar https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f42016-03-01
|/ /
* | followupGravatar Joey Hess2016-03-01
| |
* | Added a commentGravatar https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f42016-03-01
| |
* | updateGravatar Joey Hess2016-03-01
| |
* | followupGravatar Joey Hess2016-03-01
| |
* | commentGravatar Joey Hess2016-03-01
| |
* | clarifyGravatar Joey Hess2016-03-01
| |
* | Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2016-03-01
|\ \
* | | Fix shared lock file FD leak.Gravatar Joey Hess2016-03-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes behavior in this situation: l1 <- lockShared Nothing "lck" l2 <- lockShared Nothing "lck" dropLock l1 dropLock l2 Before, the lock was dropped upon the second dropLock call, but the fd remained open, and would never be closed while the program was running. Fixed by a rather round-about method, but it should work well enough. It would have been simpler to open open the shared lock once, and not open it again in the second call to lockShared. But, that's difficult to do atomically. This also affects Windows and PID locks, not just posix locks. In the case of pid locks, multiple calls to waitLock within the same process are allowed because the side lock is locked using a posix lock, and so multiple exclusive locks can be taken in the same process. So, this change fixes a similar problem with pid locks. l1 <- waitLock (Seconds 1) "lck" l2 <- waitLock (Seconds 1) "lck" dropLock l1 dropLock l2 Here the l2 side lock fd remained open but not locked, although the pid lock file was removed. After this change, the second dropLock will close both fds to the side lock, and delete the pidlock.
| * | Added a commentGravatar https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f42016-03-01
| | |
| * | Added a commentGravatar https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f42016-03-01
| | |
| * | Added a comment: recent snapshot seems has fixed itGravatar https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f42016-03-01
| | |
* | | commentGravatar Joey Hess2016-03-01
| | |
| * | Added a comment: more infoGravatar https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f42016-03-01
|/ /
* | moreinfoGravatar Joey Hess2016-03-01
| |
* | Fix bug preventing moving files to/from a repository with annex.pidlock set.Gravatar Joey Hess2016-03-01
| |
* | comment typo fixGravatar Joey Hess2016-03-01
| |
* | Fix data loss that can occur when annex.pidlock is set in a repository.Gravatar Joey Hess2016-03-01
| |
* | commentGravatar Joey Hess2016-03-01
| |
* | commentGravatar Joey Hess2016-03-01
| |
* | reopenGravatar Joey Hess2016-03-01
| |
* | commentGravatar Joey Hess2016-03-01
| |
* | Added a comment: similar problemGravatar bvaa2016-03-01
| |
* | Added a commentGravatar grawity@2ea26be48562f66fcb9b66307da72b1e2e37453f2016-03-01
| |
* | initial whiningGravatar https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f42016-03-01
| |
* | (no commit message)Gravatar https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f42016-03-01
| |
* | Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2016-02-29
|\ \
* | | devblogGravatar Joey Hess2016-02-29
| | |
| * | (no commit message)Gravatar michael.hanke@c60e12358aa3fc6060531bdead1f530ac4d582ec2016-02-29
| | |
| * | Added a commentGravatar grawity@2ea26be48562f66fcb9b66307da72b1e2e37453f2016-02-29
|/ /
* | metadata: Added -r to remove all current values of a field.Gravatar Joey Hess2016-02-29
| |
* | use DelMeta to unset tagGravatar Joey Hess2016-02-29
| | | | | | | | No behavior change, just simplification.
* | add news item for git-annex 6.20160229Gravatar Joey Hess2016-02-29
| |
* | leap year release6.20160229Gravatar Joey Hess2016-02-29
| |
* | forgot to add this comment earlierGravatar Joey Hess2016-02-29
| |
* | commentGravatar Joey Hess2016-02-29
| |
* | Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2016-02-29
|\ \
* | | fix android buildGravatar Joey Hess2016-02-29
| | |
| * | (no commit message)Gravatar grawity@2ea26be48562f66fcb9b66307da72b1e2e37453f2016-02-29
|/ /
* | remove lower-casing of field names; metadata fields are case-insensativeGravatar Joey Hess2016-02-28
| |