This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 249303 - Pause doesn't work on Windows (Cygwin)
Summary: Pause doesn't work on Windows (Cygwin)
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 8.1
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Maria Tishkova
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-12-11 20:29 UTC by soldatov
Modified: 2016-09-01 19:57 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
gdb log (16.67 KB, text/plain)
2015-03-10 20:58 UTC, soldatov
Details

Note You need to log in before you can comment on or make changes to this bug.
Description soldatov 2014-12-11 20:29:10 UTC
Code:
#include <iostream>
#include <unistd.h>

int main(int argc, char**argv) {
    for (int i = 0; i < 100; i++) {
        std::cout << "Step " << i << std::endl;
        sleep(1);
    }
    return 0;
}

Scenario:
- Load project into debugger
- Press Continue
- Wait 1-2 seconds
- Press Pause
==> IDE ignores pause
Comment 1 soldatov 2015-03-10 20:58:37 UTC
Created attachment 152540 [details]
gdb log

Pause doesn't work and new breakpoints doesn't appear