Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

win: serialize read/write/appendFile and rename #55

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on Jan 15, 2016

  1. win: serialize read/write/appendFile and rename

    rename can be used to atomically overwrite files in UNIX, but fails
    in Windows when the destination is open. A file can be deleted while
    open but will only be deleted on disk after it is closed, so a new
    file cannot take its place right away. This change adds a queue,
    making rename mutually exclusive with read/write/appendFile.
    joaocgreis committed Jan 15, 2016
    Configuration menu
    Copy the full SHA
    a95ac8c View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2016

  1. Configuration menu
    Copy the full SHA
    fa9e1de View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2016

  1. fixup: README update

    joaocgreis committed Jan 19, 2016
    Configuration menu
    Copy the full SHA
    16da4e6 View commit details
    Browse the repository at this point in the history