Questions tagged [working-set]

68 questions
11
votes
3 answers

Working Set "Other Projects" in Eclipse Juno gone?

When selecting working sets as top level elements in Eclipse Indigo's project explorer, there was always a virtual working set Other Projects. But in Juno now, it seems like projects outside any working set are just not displayed... Is there a way…
Cedric Reichenbach
  • 8,970
  • 6
  • 54
  • 89
10
votes
1 answer

Can I create a working set with the files open in the current editor?

Is it possible for Eclipse to create a new working set with all of the files open in the current (Java) editor? As far as I can tell, the only way to do this is to manually select each file in the project explorer.
Jeff Axelrod
  • 27,676
  • 31
  • 147
  • 246
7
votes
2 answers

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 // p.MinWorkingSet = 204,800 // p.WorkingSet =…
Joe
  • 122,218
  • 32
  • 205
  • 338
7
votes
1 answer

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 a working set or choose a working set, but…
kajaco
  • 2,547
  • 3
  • 24
  • 33
7
votes
1 answer

Eclipse CDT : How to manage multiple main() functions in a single C++ project?

I am starting the developpement of a project which will be made of multiple modules. I will validate each of those modules with a dedicated testbench, each with their main() function. I would like to avoid having one Eclipse project for each…
feronjb
  • 255
  • 2
  • 4
  • 16
5
votes
2 answers

How to set MinWorkingSet and MaxWorkingSet in a 64-bit .NET process?

How do I set MinWorkingSet and MaxWorking set for a 64-bit .NET process? p.s. I can set the MinWorkingSet and MaxWorking set for a 32-bit process, as follows: [DllImport("KERNEL32.DLL", EntryPoint = "SetProcessWorkingSetSize", SetLastError = true,…
Contango
  • 76,540
  • 58
  • 260
  • 305
5
votes
0 answers

Nested Working Sets in Eclipse 3.4

as an Eclipse 3.4 user, I would like to know if there is a way to define nested working sets. Thanks.
user738806
  • 93
  • 4
4
votes
1 answer

Closed projects in Eclipse don't appears in a working set in a package explorer

I recently installed a new version of eclipse (2018-09), and faced with this problem. So let say we have 4 opened projects A,B,C and D: 4 projects And then we create new working set WS_01 with: View Menu (down arrow icon in package explorer) >…
4
votes
1 answer

What is meant by "Add project to working sets" in eclipse neon?

I was starting with a new project in eclipse Neon version 3. I came across with this option saying "Add project to working sets". What does it mean if i choose it?
Varun Singh
  • 444
  • 6
  • 21
4
votes
1 answer

Eclipse working sets -- how to rename them? Also, can the error-icon be disabled?

After mild frustration with the difficulty to make top-level "plain old folders" within Eclipse for visual-organization purposes, I discovered that the thing I'm after is called a "working set". Hooray! But they don't seem to be rename-able, by any…
Lenoxus
  • 545
  • 1
  • 4
  • 19
4
votes
2 answers

.net memory usage, what determines private byte size

Confused by private bytes! Currently analysing the memory usage of our C# .NET application with ANTS profiler. Here are our findings taken after start-up with the main form visible on screen. No other functionality has been used. Gen 0 Heap -…
paligap
  • 942
  • 1
  • 12
  • 28
3
votes
1 answer

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 examined the heap change using umdh. The difference…
3
votes
2 answers

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 set). Is it normal to have all this unmanaged code…
Tiago
  • 737
  • 5
  • 20
3
votes
1 answer

variable in makefile, unexpected behaviour

I have makefile where I have noticed somethign peculiar. On the line marked with <------, if I put $(OBJECTS) instead of String.o the compilation fails. But I defined OBJECTS=$(String.o), why does that work this way? LIBS=-ldl…
Jenia Ivanov
  • 2,485
  • 3
  • 41
  • 69
3
votes
1 answer

Working set from .gitignore in Eclipse

How do I have a Project Explorer's Working Set be built automatically from the contents of .gitignore, and then kept in sync with .gitignore? I am working on a C++ AutoTools project which, as it is common for AutoTools projects, generates quite a…
liori
  • 40,917
  • 13
  • 78
  • 105
1
2 3 4 5