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

native::start does not join all spawned tasks #11309

Closed
huonw opened this issue Jan 4, 2014 · 4 comments
Closed

native::start does not join all spawned tasks #11309

huonw opened this issue Jan 4, 2014 · 4 comments

Comments

@huonw
Copy link
Member

huonw commented Jan 4, 2014

As demonstrated by the following program, which only prints hi at the mercy of the OS scheduler (taking the 10_000 to 0 makes it never print, and making it large makes it always print, as one would expect).

#[feature(asm)];

extern mod native;

#[start]
fn start(argc: int, argv: **u8) -> int {
    native::start(argc, argv, proc() {
            spawn(proc() println("hi"));

            for _ in range(0, 10_000) { unsafe {asm!("")} }
        });
    0
}
$ rustc -O native-spawn.rs
$ for i in {0..10}; do echo $i $(./native-spawn); done
0
1
2
3
4 hi
5 hi
6 hi
7 hi
8
9 hi
10 hi

Replacing libnative with libgreen prints every time, even with no busy loop.

@huonw
Copy link
Member Author

huonw commented Jan 4, 2014

cc @alexcrichton

@alexcrichton
Copy link
Member

Hm, I tried to reproduce this, but I think OSX must always immediately schedule a child thread as opposed to sometimes not. I think I found the bug, but can you make sure that this commit fixes it for you?

alexcrichton@3a271c8

@huonw
Copy link
Member Author

huonw commented Jan 4, 2014

It looks like it does.

@alexcrichton
Copy link
Member

Closed by 9c8813f

flip1995 pushed a commit to flip1995/rust that referenced this issue Aug 11, 2023
[`filter_map_bool_then`]: Don't ICE on late bound regions

Fixes rust-lang#11309

Also lints `&NonCopy` now, since any `&` is `Copy`. That was accidental, but it seems that this is a consequence (or improvement!) of this fix.

r? `@Jarcho`

changelog: [`filter_map_bool_then`]: Don't ICE on late bound regions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants