Uh oh!
There was an error while loading. Please reload this page.
Reduce allocations for CreateDirectory - #61777
Conversation
ghost
commented
Nov 18, 2021
Tagging subscribers to this area: @dotnet/area-system-io Issue DetailsI wanted to see what would it take to have a sys-call that accepts a
|
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
stephentoub
left a comment
There was a problem hiding this comment.
Other than passing the VLB by ref (which needs to be done), LGTM.
Co-authored-by: Stephen Toub <stoub@microsoft.com>
Uh oh!
There was an error while loading. Please reload this page.
carlossanlop
left a comment
There was a problem hiding this comment.
Oops, I meant to approve it, not comment.
LGTM (pending hearing from @AaronRobinsonMSFT in Stephen's question).
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
cf12ab7 to
ef47025Comparetmds
commented
Nov 19, 2021
I learned a few new tricks from this PR. Thanks @adamsitnik! |
I wanted to see what would it take to have a sys-call that accepts a
ROS<char>instead ofstringand after that I've discovered the existence ofValueListBuilder<int>which allowed me to get rid ofList<int>allocation.