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

[lldb comparator] ability to execute in parallel #36

Merged
merged 1 commit into from
Oct 3, 2024

Conversation

Vipul-Cariappa
Copy link
Contributor

LLDBDebugger handles only 1 lldb instance (similar to IDDGdbController)
LLDBParallelDebugger handles 2 instance of LLDBDebugger and is responsible for parallel execution


Works similar to #29

Test with

// main.c

#include<unistd.h>

int main() {
    sleep(5); // sleep for 5 secs
    return 1;
}

Previously it would take ~10.5 secs. Now it takes ~5.5 secs.

`LLDBDebugger` handles only 1 lldb instance (similar to `IDDGdbController`)
`LLDBParallelDebugger` handles 2 instance of `LLDBDebugger` and is responsible for parallel execution
@vgvassilev vgvassilev requested a review from mvassilev October 3, 2024 07:13
@mvassilev mvassilev merged commit fa0eaec into compiler-research:main Oct 3, 2024
@Vipul-Cariappa Vipul-Cariappa deleted the lldb-parallel branch November 19, 2024 13:08
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

Successfully merging this pull request may close these issues.

2 participants