eclipse-cdt-cloud / eclipse-cdt-cloud/cdt-gdb-vscode

stepping over fflush

Open
#190 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
TypeScript
Stars
26
Forks
31
Avg merge
5d 6h
Merged PRs (30d)
2

Description

The extension is freezing when I step over a fflush.

example:
``` C
#include

int main(void)
{
printf("hello\n");
fflush(stdout); // works fine
printf("world");
fflush(stdout); // frezes
return 0;
}
```
compile command:
``` bash
gcc -Wall -Wextra -ggdb -o build/fflush-test fflush-test.c
```
It works fine on gdb alone.

## Expected behaviour
It would step to the line `return 0` and not freeze.

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.