Skip to content

fs: add two new modes "as" and "as+"#18801

Closed
SirR4T wants to merge 2 commits intonodejs:masterfrom
SirR4T:syncWithAppend
Closed

fs: add two new modes "as" and "as+"#18801
SirR4T wants to merge 2 commits intonodejs:masterfrom
SirR4T:syncWithAppend

Conversation

@SirR4T
Copy link

@SirR4T SirR4T commented Feb 15, 2018

Two new modes 'as' and 'as+' are added, for opening files:

  • 'as': append in synchronous mode,
  • 'as+': read write in synchronous mode.

Fixes #18635 .

Checklist
  • make -j4 test (UNIX), or vcbuild test (Windows) passes
  • tests and/or benchmarks are included
  • documentation is changed or added
  • commit message follows commit guidelines
Affected core subsystem(s)

fs

Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

author ready PRs that have at least one approval, no pending requests for changes, and a CI started. fs Issues and PRs related to the fs subsystem / file system. semver-minor PRs that contain new features and should be released in the next minor version.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

O_SYNC with O_APPEND flag in fs.open?