Skip to content
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

Rollup of 8 pull requests #40626

Closed
wants to merge 26 commits into from
Closed

Rollup of 8 pull requests #40626

wants to merge 26 commits into from

Commits on Mar 17, 2017

  1. Configuration menu
    Copy the full SHA
    50cede0 View commit details
    Browse the repository at this point in the history
  2. Update libc to 0.2.21

    malbarbo committed Mar 17, 2017
    Configuration menu
    Copy the full SHA
    c96491f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5798817 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3435c60 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    963d4df View commit details
    Browse the repository at this point in the history
  6. Fix typo in mutex.rs docs

    This seems to match other uses of "be accessed" in the document.
    ScottAbbey authored Mar 17, 2017
    Configuration menu
    Copy the full SHA
    ec8ecf4 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    33a5665 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    65b7c4e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d38ea8b View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9511fe6 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    10510ae View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    37b38a2 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    48890d4 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    a8f4a1b View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    1241a88 View commit details
    Browse the repository at this point in the history
  16. Add docs for sort_unstable to unstable book

    Stjepan Glavina committed Mar 17, 2017
    Configuration menu
    Copy the full SHA
    a0fb726 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2017

  1. Configuration menu
    Copy the full SHA
    2976ddb View commit details
    Browse the repository at this point in the history
  2. Update the cargo submodule again

    Unfortunately it was reverted back to a broken state in
    e06c515 by accident, so let's bring it forward
    again!
    alexcrichton committed Mar 18, 2017
    Configuration menu
    Copy the full SHA
    9fb737b View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#40317 - malbarbo:update-libc, r=alexcrichton

    Update libc to 0.2.21
    
    Update to include android aarch64 and x86 improvements.
    frewsxcv authored Mar 18, 2017
    Configuration menu
    Copy the full SHA
    d3c72c2 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#40538 - aturon:stab-1.17, r=alexcrichton

    Library stabilizations for 1.17
    
    Details of the stabilizations are available in the commits. Includes only library stabilizations; there are a couple of compiler stabilizations that should also be done for 1.17.
    
    Will need a beta backport, which I will create after approval.
    
    r? @alexcrichton
    frewsxcv authored Mar 18, 2017
    Configuration menu
    Copy the full SHA
    7387fd5 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#40590 - z1mvader:master, r=steveklabnik

    documented order of conversion between u32 an ipv4addr
    
    This fixes rust-lang#40118
    frewsxcv authored Mar 18, 2017
    Configuration menu
    Copy the full SHA
    a3aaa0e View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#40603 - QuietMisdreavus:slice-ptr-docs, r=G…

    …uillaumeGomez
    
    minor wording tweak to slice::{as_ptr, as_mut_ptr}
    
    Per rust-lang#37334, the slice-as-pointer methods mentioned that "modifying the slice may cause its buffer to be reallocated", when in fact modifying the *slice* itself would cause no such change. (It is a borrow, after all!) This is a tweak to the wording of that line to stress it's the *collection* that could cause the buffer to be reallocated.
    
    r? @steveklabnik
    frewsxcv authored Mar 18, 2017
    Configuration menu
    Copy the full SHA
    ff630b3 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#40611 - ScottAbbey:patch-1, r=GuillaumeGomez

    Fix typo in mutex.rs docs
    
    This seems to match other uses of "be accessed" in the document.
    frewsxcv authored Mar 18, 2017
    Configuration menu
    Copy the full SHA
    08a4a12 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#40619 - stjepang:unstable-book-sort-unstabl…

    …e, r=steveklabnik
    
    Add docs for sort_unstable to unstable book
    
    Tracking issue for the feature: rust-lang#40585
    
    r? @steveklabnik
    frewsxcv authored Mar 18, 2017
    Configuration menu
    Copy the full SHA
    45d9514 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#40621 - jswalden:dependant-spelling-fix, r=…

    …sfackler
    
    Fix a spelling error in HashMap documentation, and slightly reword surrounding text for precision
    
    Noticed while reading docs just now.
    
    It's possible that the prior wording *meant* to state that the seed's randomness depends on the exact instant that the system RNG was created, I guess.  But unless there's an API guarantee that this is the case, the wording seems over-precise.  Is there a formal API guarantee that would forbid, say, the system RNG from generating all output using the Intel RDRAND instruction?  I don't think the quality of output in that case would depend on when the RNG was created.  Yet it seems to me like it could well be a valid source of randomness when computing the initial seed.
    
    For that reason, tying the randomness of the seed, to the quality of the RNG's output *at the precise instant the seed is computed*, seems less confining.  That instantaneous quality level could be determined by the quality at the instant the RNG was created -- but instantaneous quality need not be low for that precise reason.
    frewsxcv authored Mar 18, 2017
    Configuration menu
    Copy the full SHA
    7a8be40 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#40625 - alexcrichton:update-cargo-again, r=…

    …alexcrichton
    
    Update the cargo submodule again
    
    Unfortunately it was reverted back to a broken state in
    e06c515 by accident, so let's bring it forward
    again!
    frewsxcv authored Mar 18, 2017
    Configuration menu
    Copy the full SHA
    e7e229e View commit details
    Browse the repository at this point in the history