News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

What is it doing ???

Started by johne53, December 29, 2009, 04:31:38 PM

Previous topic - Next topic

johne53

I don't know if anyone else has ever noticed this (or if anyone can replicate it) but if I launch C::B and load a reaonably large session/workspace (this one happens to contain around 25 individual projects) C::B hogs my processor for around 4-5 minutes, taking up 100 percent of the processor cycles. After 5 minutes or so, it settles down. I'm using the Windows version downloaded maybe 2 months ago. Anyone else ever seen this? What could it be doing?

ollydbg

I guess CodeCompletion plugin was pasing your workspace. and it takes several minutes to finish if your project contains too many files.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.