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 270216 - At first time IDE doesn't create "application (PID 11111)" node
Summary: At first time IDE doesn't create "application (PID 11111)" node
Status: VERIFIED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Debugger (show other bugs)
Version: Dev
Hardware: PC Linux
: P3 normal (vote)
Assignee: Maria Tishkova
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-03-27 13:15 UTC by Maria Tishkova
Modified: 2017-04-20 09:50 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Maria Tishkova 2017-03-27 13:15:19 UTC
C++ code:
#include <stdio.h>
#include <unistd.h>
.
int main(int argc, char** argv) {
    for (int i = 0; i < 1000; i++) {
        printf("Step %d\n", i);
        sleep(1);
    }
    return 0;
}
.
Outside IDE:
- Build C++ file
-- cd /tmp
-- CC -g -o test test.cpp
-- /tmp/test
.
Inside IDE
- Push Debug|Attach Debugger menu item
- Select /tmp/test process
- Press OK button
==> debugger works nicely, but Projects tab is empty (I expect "test (PID
11111)" node)
.
Workaround:
- Push Finish Debugger button
- Push Debug|Attach Debugger menu item again
- Select /tmp/test process
- Press OK button
==> Now I see "test (PID 11111)" node in Projects tab
Comment 1 Maria Tishkova 2017-03-27 13:18:54 UTC
Fixed in enum

changeset:   314914:4a3403edbb27
branch:      release82
tag:         tip
user:        Maria Dalmatova <mromashova@netbeans.org>
date:        Mon Mar 27 15:37:46 2017 +0300
summary:     fixed cr#25449326 - At first time IDE doesn't create "application (PID 11111)" node
Comment 2 soldatov 2017-04-20 09:50:26 UTC
Verified in latest Oracle Developer Studio (based on NetBeans 8.2 patch 2)