Re: Can Netbeans do this?

2018-02-26 Thread Owen Thomas
Hi again. Thanks for your feedback so far... I wasn't actually thinking of using the profiler - it was a simple variation on "find usages" specifically intended for finding on locks obtained for a specific type. Sometimes, I find I need to look for every point where a particular type is being loc

Re: Can Netbeans do this?

2018-02-26 Thread Sven Reimers
Hi all, interesting idea. I think what we would need is something in JDI allowing to do the query or trying to listen to all the monitor entered/exited events... Anyone familiar with those low level details? Sven On Mon, Feb 26, 2018 at 3:49 PM, Kyle Rose wrote: > Is the lock view in the prof

Re: [ANN] Closing the NetBeans Logo Contest

2018-02-26 Thread Antonio
It doesn't work for me either. This one does, though: https://blogs.apache.org/incubator/entry/call-for-entries-apache-incubator :-) On 26/02/18 17:14, Eduard Karel de Jong wrote: Hello Antonio, The link on that page

Re: Can Netbeans do this?

2018-02-26 Thread Kyle Rose
Is the lock view in the profiler not showing this information? I got the impression it is. Sent from Outlook on my Pixel 2 From: cowwoc Sent: Monday, February 26, 2018 6:54:58 AM To: users@netbeans.apache.org Subject: Re: Can Netbeans do this? I agree that the

Re: Can Netbeans do this?

2018-02-26 Thread cowwoc
I agree that the debugger can do this, but it isn't easy. You'd have to go thread and thread and manually check the entire stack-trace for locks. I was also hoping that the IDE would make it easier to visualize this information. As an aside, the profiler has a view you might find more useful.

[ANN] Closing the NetBeans Logo Contest

2018-02-26 Thread Antonio
Hi all, We'll be closing the First Apache NetBeans Logo Contest [1] by March the 1st, to proceed with voting during March the 2nd, 3rd and 4th. If you would like to submit a proposal for the Apache NetBeans Logo please do so before March the 2nd. Note that we're focusing in the icon design (

Re: Can Netbeans do this?

2018-02-26 Thread Antonio
AFAIK the debugger can do this. Just add a breakpoint and then take a look at the rest of running threads, to see what they're doing. Cheers, Antonio On 26/02/18 10:04, Owen Thomas wrote: Hello. I've been working with threads, and I would like to know if the IDE can show me where I have obta

Can Netbeans do this?

2018-02-26 Thread Owen Thomas
Hello. I've been working with threads, and I would like to know if the IDE can show me where I have obtained a lock (using the "synchronized" keyword) on a particular type? I think this should be something the IDE should in theory be able to do... Owen.