Rollup merge of #68660 - kubo39:patch-1, r=Dylan-DPC

Fix typo.
This commit is contained in:
Dylan DPC 2020-01-31 01:21:27 +01:00 committed by GitHub
commit 8b2fa37b07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -426,8 +426,8 @@ pub mod guard {
}
// glibc >= 2.15 has a __pthread_get_minstack() function that returns
// PTHREAD_STACK_MIN plus however many bytes are needed for thread-local
// storage. We need that information to avoid blowing up when a small stack
// PTHREAD_STACK_MIN plus bytes needed for thread-local storage.
// We need that information to avoid blowing up when a small stack
// is created in an application with big thread-local storage requirements.
// See #6233 for rationale and details.
#[cfg(target_os = "linux")]