Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
libcore|FS: Folder concurrency
One shouldn't lock a Folder for the duration of the entire path
lookup, as this leads easily to lockups.

Todo: Reconsider FS concurrency rules.
  • Loading branch information
skyjake committed Jun 25, 2016
1 parent 293bae7 commit ba48bfe
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions doomsday/sdk/libcore/src/filesys/node.cpp
Expand Up @@ -96,8 +96,6 @@ Node const *Node::tryFollowPath(PathRef const &path) const
return this;
}

DENG2_GUARD(this);

// Extract the next component.
Path::Segment const &component = path.firstSegment();

Expand Down

0 comments on commit ba48bfe

Please sign in to comment.