forked from OSchip/llvm-project
[Sanitizers] Remove obsolete OpenFile from sanitizer_solaris.cc
I noticed that the instance of OpenFile in sanitizer_solaris.cc is no longer needed. Removed as follows, tested on x86_64-pc-solaris2.11. Differential Revision: https://reviews.llvm.org/D63764 llvm-svn: 364892
This commit is contained in:
parent
8758dce45f
commit
8d568d044c
|
@ -88,11 +88,6 @@ uptr internal_open(const char *filename, int flags, u32 mode) {
|
|||
return _REAL64(open)(filename, flags, mode);
|
||||
}
|
||||
|
||||
uptr OpenFile(const char *filename, bool write) {
|
||||
return ReserveStandardFds(
|
||||
internal_open(filename, write ? O_WRONLY | O_CREAT : O_RDONLY, 0660));
|
||||
}
|
||||
|
||||
DECLARE__REAL_AND_INTERNAL(uptr, read, fd_t fd, void *buf, uptr count) {
|
||||
return _REAL(read)(fd, buf, count);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue