Archive for September, 2009


35EQ:upgraded to version 1.20

zjm

After several weeks of hard work, 35EQ  has finally upgraded to version 1.20,with some great new features and a new interface for group chat:

Continue Reading...

September 11th, 2009 in 35eq | 4 comments


Compile with /MP flag on my system

The most interesting feature I like in VC 2008 is the parallel build capability.

The /MP option can reduce the total time to compile the source files on the command line. The /MP option causes the compiler to create one or more copies of itself, each in a separate process. Then these copies simultaneously compile the source files. Consequently, the total time to build the source files can be significantly reduced.

Continue Reading...

September 8th, 2009 in Programming | No comments yet


QT/VC2008:Project is rebuilt every time even though I didn’t make any modifications

I have encountered problem when attempting to compile VC projects created by QT 4.5.2,VC always rebuilds the whole project when I start to run or build the project, even though I didn’t make any modifications to the code.the project is always “out of date”.

Continue Reading...

September 8th, 2009 in Programming | 1 comment


LogMicroscope:boost performance for logging system by 43%

Recently,I have rewritten the logging engine for LogMicroscope,using circular-buffer in log writing threads,and WriteFileGather in file writing thread to gathers up the data from these discrete buffers in memory and transfers them "in place" as a single operation.

Continue Reading...

September 2nd, 2009 in Programming | 1 comment