Runtime work#716
Closed
eholk wants to merge 2 commits intorust-lang:masterfrom
Closed
Conversation
added 2 commits
July 20, 2011 13:07
We're trying to get closer to doing correct move semantics for channel operations. This involves a lot of cleanup (such as removing the unused sched parameter from rust_vec constructor) and making circular_buffer kernel_owned. Added tagging for memory allocations. This means we give a string tag to everything we allocate. If we leak something and TRACK_ALLOCATIONS is enabled, then it's much easier now to tell exactly what is leaking.
This lets us un-XFAIL task-comm-10.rs.
Contributor
|
Integrated. |
ZuseZ4
added a commit
to EnzymeAD/rust
that referenced
this pull request
Mar 7, 2023
* mark strcmp as inactive2 * mark strcmp as inactive3 * mark strcmp as ro * mark Fn too
celinval
added a commit
to celinval/rust-dev
that referenced
this pull request
Jun 4, 2024
Fixes rust-lang#716 Conflicts: .github/workflows/ci.yml src/tools/compiletest/src/runtest.rs
tgross35
added a commit
to tgross35/rust
that referenced
this pull request
Jun 3, 2025
…3T09-57-02Z chore: release v0.1.135
noscripter
pushed a commit
to noscripter/rust
that referenced
this pull request
Sep 8, 2025
* add multiply.rs * Optimized code * Remove redundant references * modify test * modify test name * modify code * Determine the legitimacy of a string * Modify judgment conditions * Optimization code * modify code --------- Co-authored-by: mengfansheng <[email protected]> Co-authored-by: Piotr Idzik <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The first commit is mostly cleanup and better debugging support. The main thing it adds is tags to memory allocations so that it's easier to tell what's leaking.
The second one improves channels so that we can re-enable one more test case.