diff options
author | Abseil Team <absl-team@google.com> | 2023-06-15 12:18:13 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-06-15 12:19:02 -0700 |
commit | 04e0dcae14f6bde8f4feec4516b12d4f787a517f (patch) | |
tree | 60c1712928a82323ef70b35525aa48ebf857f514 /absl/base/internal/raw_logging.h | |
parent | 5922d12960110b75e8fe7f8a7ea1a1d6a5bec708 (diff) | |
download | abseil-04e0dcae14f6bde8f4feec4516b12d4f787a517f.tar.gz abseil-04e0dcae14f6bde8f4feec4516b12d4f787a517f.tar.bz2 abseil-04e0dcae14f6bde8f4feec4516b12d4f787a517f.zip |
Rename AsyncSignalSafeWriteToStderr to AsyncSignalSafeWriteError.
It no longer strictly writes to stderr, since Emscripten/WebAssembly now use _emscripten_err which might be replaced by something that is not the same as stderr by the host.
PiperOrigin-RevId: 540655336
Change-Id: Icc2a430a0db53a1282ef5558e9f3648db67e972c
Diffstat (limited to 'absl/base/internal/raw_logging.h')
-rw-r--r-- | absl/base/internal/raw_logging.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/base/internal/raw_logging.h b/absl/base/internal/raw_logging.h index 3f852d31..b79550b2 100644 --- a/absl/base/internal/raw_logging.h +++ b/absl/base/internal/raw_logging.h @@ -130,7 +130,7 @@ void RawLog(absl::LogSeverity severity, const char* file, int line, // Writes the provided buffer directly to stderr, in a signal-safe, low-level // manner. Preserves errno. -void AsyncSignalSafeWriteToStderr(const char* s, size_t len); +void AsyncSignalSafeWriteError(const char* s, size_t len); // compile-time function to get the "base" filename, that is, the part of // a filename after the last "/" or "\" path separator. The search starts at |