mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-25 15:05:55 +01:00
refactor: replace boost::filesystem with std::filesystem
Warning: Replacing fs::system_complete calls with fs::absolute calls in this commit may cause minor changes in behaviour because fs::absolute no longer strips trailing slashes; however these changes are believed to be safe. Co-authored-by: Russell Yanofsky <russ@yanofsky.org> Co-authored-by: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com>
This commit is contained in:
@@ -595,6 +595,7 @@ public:
|
||||
allowed_syscalls.insert(__NR_readlink); // read value of a symbolic link
|
||||
allowed_syscalls.insert(__NR_rename); // change the name or location of a file
|
||||
allowed_syscalls.insert(__NR_rmdir); // delete a directory
|
||||
allowed_syscalls.insert(__NR_sendfile); // transfer data between file descriptors
|
||||
allowed_syscalls.insert(__NR_stat); // get file status
|
||||
allowed_syscalls.insert(__NR_statfs); // get filesystem statistics
|
||||
allowed_syscalls.insert(__NR_statx); // get file status (extended)
|
||||
|
||||
Reference in New Issue
Block a user