Is it possible for the 3ds to support flock? #200
-
I am using the wonderful |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The 3DS has no notion of file locking, so I doubt that the |
Beta Was this translation helpful? Give feedback.
-
I see, thank you! |
Beta Was this translation helpful? Give feedback.
The 3DS has no notion of file locking, so I doubt that the
flock
API could be properly supported. That being said, I took a look atredb
's source code and it looks like it has a fallback API that just uses mutexes for file locking. So to me it looks like the best way to add 3DS support toredb
would be to make a PR to this file that chooses the fallback impl for thehorizon
OS instead of using theunix
impl.