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

Race-Condition in Aid::send() method #144

Open
mineichen opened this issue Nov 17, 2020 · 0 comments
Open

Race-Condition in Aid::send() method #144

mineichen opened this issue Nov 17, 2020 · 0 comments

Comments

@mineichen
Copy link

Sending multiple messages might not be scheduled, if two threads send a message to the sender simultanously. If a context switch happens between sending and checking the receivable-count, the counter might never be 1 and will therefore never be scheduled to the executor.

match sender.send_await_timeout(message, system.config().send_timeout) {
    Ok(_) => {
        if sender.receivable() == 1 {
            system.schedule(self.clone());
        };
        Ok(())
    }
    Err(_) => Err(AidError::SendTimedOut(self.clone())),
}
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

1 participant