Tagged Questions
The working-set tag has no wiki summary.
4
votes
1answer
421 views
What is a debug working set (Eclipse)?
I'm using Eclipse IDE and notice an option in the Debug perspective in the Breakpoints view that allows me to chose/create a working set. I've found all kinds of help online that tells me how to make ...
3
votes
2answers
130 views
Why is Process.WorkingSet > Process.MaxWorkingSet?
Idle curiosity...
I'm looking at some of the properties of the current process:
using(Process p = Process.GetCurrentProcess())
{
// Inspect properties
// p.MaxWorkingSet = 1,413,120
// ...
2
votes
1answer
129 views
What accounts for the difference between the size of the heap (as reported by umdh) and the (private) working set (as reported by task manager)?
C++ native code running on Windows 7. VS2008.
A particular state change on my application increases the working set (private working set) from 16Mb(6.5Mb) to 38Mb(22Mb). As this seemed excessive I ...
1
vote
1answer
83 views
How to set recent working set list size limit in eclipse RCP?
I'm building an eclipse RCP using working sets. I programmatically add some working sets to my project explorer (CommonNavigator) and then add in recent working set list by ...
1
vote
2answers
612 views
Heap vs Managed Heap
I have a big .NET application that is currently hitting a private working set size of 865MB.
So I ran VMMap and saw that the Heap is about 587MB and Managed Heap is only 255MB (also private working ...
1
vote
1answer
207 views
How can I load two Eclipse projects with conflicting names in two different working sets?
I have two Eclipse working sets (WorkingSet 0.1.x and WorkingSet 0.2.x). I need to do work on them interchangeably, though neither interacts with the other. The problem is that some of the projects ...
1
vote
1answer
72 views
Retain Navigator view state when switching working sets in Eclipse
When switching working sets in Eclipse, the tree in the Navigator View collapses. Is there any way to stop that collapse and have the view retain the tree in its open position?
0
votes
1answer
12 views
Eclipse Working set on basis of feature(s)
IDE : Eclipse (Indigo) for RCP and RAP Developers version 3.7.0
It is possible to create working set in Eclipse to include plugins associated to a set of selected features?
This is to use the 5 ...
0
votes
1answer
41 views
OSX Deprecation Warnings CMake
I'm building some code using CMake that should be compiled against the ScriptingBridge.
I'm seeing many tens of thousands of log lines such as:
In file included from ...
0
votes
0answers
24 views
CMockery Mock, Duplicate Symbol Error
I'm having the problem with CMockery mocks that there are coming duplicate symbol warnings.
The implementation of the code is quite long, so it's in a Gist here.
The Gist includes the test (.c), ...
0
votes
1answer
55 views
How reorder working sets in Eclipse Indigo?
I just upgraded to Eclipse Indigo. It appears that some working set functionality is missing. How do I change the order of the working sets in the Project Explorer window? In Helios I could just drag ...
0
votes
1answer
144 views
Select active working set by hotkey in Open Resource window
I am using Eclipse (PDT) for developing websites in PHP. As I have many projects, I use working sets intensely. Besides this one, another of the best features of Eclipse is Open Resource (ctrl+shift+R ...
0
votes
3answers
184 views
possible to have two working sets? 1) data 2) code
In regards to Operating System concepts... Can a process to have two working sets, one that represents data and another that represents code?