Jump to content

DoD:S usage


DanCF

Recommended Posts

Is 3Ghz considered normal for a 32 player DoD:s server?

 

 

 

I have a 32 player DoD:S server which is utilizing almost an entire 3.4Ghz Xeon CPU (on a dual Xeon machine) when it isn't even totally full.

Link to comment
Share on other sites

If i just set the affinity so that the HL2 engine servers and the Halo servers were on different CPUs would that solve the problem, or is the conflict more on the OS level and require completely separate machines?

Link to comment
Share on other sites

  • 1 month later...

Hey guys dont quote me on this one but i have a answer to the Halo problem.

 

 

 

I had the same problems quite awhile ago with halo and Hl1 & Hl2.

 

 

 

What i found the problem to be was that the Halo.exe causes the Processors in the machine to go into a form of timing otherwise known as High Resolution Timing to make for example boosted servers run fast frames per second.

 

 

 

This happens with most microsoft games for example it all so happend with Freelancer caused the cpus to go into High Resolution Timing basicly the only thing that people can do is make sure you run Microsoft games on different machines.

 

 

 

For example when i researched the issue to find an answer, i also found abit of code "C++" which can make your processors go into High Resolution Timing. Here is the example .

 

 

 

struct ProfTimer {

 

void Start(void) {

 

QueryPerformanceCounter(&mTimeStart);

 

};

 

void Stop(void) {

 

QueryPerformanceCounter(&mTimeStop);

 

};

 

double GetDurationInSecs(void)

 

{

 

LARGE_INTEGER freq;

 

QueryPerformanceFrequency(&freq);

 

double duration = (double)(mTimeStop.QuadPart-mTimeStart.QuadPart)/(double)fre q.QuadPart;

 

return duration;

 

}

 

 

 

LARGE_INTEGER mTimeStart;

 

LARGE_INTEGER mTimeStop;

 

};

 

 

 

This basicly tells the processors to push its normal 55 milliseconds timing to High Resolution Timing of one microsecond (0.000001 seconds). This makes to processors work alot harder.

 

 

 

Just thaught i would try and help :smile:

 

 

 

Lee

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Terms of Use