mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
Set F_GLOBAL_NOCACHE for Mac OS X
This commit is contained in:
parent
506a9358e1
commit
74520b03f8
1 changed files with 3 additions and 0 deletions
|
@ -118,6 +118,9 @@ int openFileWithFlags(const std::string& filename, int flags,
|
|||
util::safeStrerror(errNum).c_str()),
|
||||
errCode);
|
||||
}
|
||||
#if defined(__APPLE__) && defined(__MACH__)
|
||||
fcntl(fd, F_GLOBAL_NOCACHE, 1);
|
||||
#endif // __APPLE__ && __MACH__
|
||||
return fd;
|
||||
}
|
||||
} // namespace
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue