9 questions
5
votes
2
answers
9k
views
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 = ...
7
votes
1
answer
15k
views
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 ...
3
votes
2
answers
2k
views
Working Set Selection Programmatically in Eclipse
I want to achieve the functionality of selecting a working set programmatically. I tried with the below code:
IWorkingSetManager wsMgr = PlatformUI.getWorkbench().getWorkingSetManager();
IWorkingSet ...
1
vote
1
answer
257
views
Memory reported in Resource Monitor not showing in UMDH
I have a service which intermittently starts gobbling up server memory over time and needs to be restarted to free it. I turned +ust with gflags, restarted the service, and started taking scheduled ...
1
vote
1
answer
87
views
How to get a Workspace's working sets information in a plugin?
I want to get the runtime working sets information of the current workspace. I have tried the method: IWorkingSet[] getWorkingSets() of the IWorkbenchPage
IWorkbenchPage page = PlatformUI....