-
Notifications
You must be signed in to change notification settings - Fork 15.5k
[compiler-rt] Fix usage of stdin/stdout
#171560
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
From llvm#170809. Causes compile errors when `stdin`/`stdout` are #defined in stdio.h.
|
@llvm/pr-subscribers-compiler-rt-sanitizer Author: Arthur Eubanks (aeubanks) ChangesFrom #170809. Causes compile errors when Full diff: https://github.com/llvm/llvm-project/pull/171560.diff 1 Files Affected:
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_posix.h b/compiler-rt/lib/sanitizer_common/sanitizer_posix.h
index 063408b8360c1..dc9c3b8822d30 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_posix.h
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_posix.h
@@ -68,7 +68,7 @@ uptr internal_waitpid(int pid, int *status, int options);
int internal_fork();
bool internal_spawn(const char* argv[], const char* envp[], pid_t* pid,
- fd_t stdin, fd_t stdout);
+ fd_t fd_stdin, fd_t fd_stdout);
int internal_sysctl(const int *name, unsigned int namelen, void *oldp,
uptr *oldlenp, const void *newp, uptr newlen);
|
|
Sorry about that, thanks! |
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/169/builds/17867 Here is the relevant piece of the build log for the reference |
From #170809.
Causes compile errors when
stdin/stdoutare #defined in stdio.h.