I compiled an executable file with the following source code for each operating system:
Code: Select all
OpenWindow(0, 100, 100, 300, 200, "1")
Repeat
event = WaitWindowEvent(25)
If Event = 0
For k = 1 To 1200000
n = 555;
n = k * n
n = k / n
Next k
EndIf
Until Event = #PB_Event_CloseWindow
I am wondering if this is normal because Osx basically requires more processor time than Windows XP, or could we say "such basic source code should take same processor time on same computer, whatever is the operating system" ?