File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
trunk/src/libstd/sys/unix Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: b6641c1595687a6c7c8ba381b46b931a58a3ada4
2
+ refs/heads/master: 737bb30f0af5b27785a006a91a8792a06478de87
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: a923278c6278c63468d74772c58dbf788e88f58c
5
5
refs/heads/try: ce76bff75603a754d092456285ff455eb871633d
Original file line number Diff line number Diff line change @@ -316,11 +316,12 @@ pub fn sleep(dur: Duration) {
316
316
// is created in an application with big thread-local storage requirements.
317
317
// See #6233 for rationale and details.
318
318
//
319
- // Use dlsym to get the symbol value at runtime, for compatibility
320
- // with older versions of glibc. Assumes that we've been dynamically
321
- // linked to libpthread but that is currently always the case. We
322
- // previously used weak linkage (under the same assumption), but that
323
- // caused Debian to detect an unnecessarily strict versioned
319
+ // Use dlsym to get the symbol value at runtime, both for
320
+ // compatibility with older versions of glibc, and to avoid creating
321
+ // dependencies on GLIBC_PRIVATE symbols. Assumes that we've been
322
+ // dynamically linked to libpthread but that is currently always the
323
+ // case. We previously used weak linkage (under the same assumption),
324
+ // but that caused Debian to detect an unnecessarily strict versioned
324
325
// dependency on libc6 (#23628).
325
326
#[ cfg( target_os = "linux" ) ]
326
327
fn min_stack_size ( attr : * const libc:: pthread_attr_t ) -> libc:: size_t {
You can’t perform that action at this time.
0 commit comments