[b][red]This message was edited by Gregry2 at 2005-7-13 22:27:7[/red][/b][hr] : Could be, was just a guess. The windows gurus usually post in the morning. :
Where i am its 2:30 pm. Im across the dateline, go my page to see. Thats why my posts are in the 'morning' for you. Actually, its thursday 14. But you're up?
: [b][red]This message was edited by Gregry2 at 2005-7-13 22:27:7[/red][/b][hr] : : Could be, was just a guess. The windows gurus usually post in the morning. : : : : Where i am its 2:30 pm. Im across the dateline, go my page to see. Thats why my posts are in the 'morning' for you. Actually, its thursday 14. But you're up? : : : : It is not even midnight here right now. It was a bit before 10 when I replied I think. I am a bit of a night owl, and after spending nearly 10 straight hours coding, what do I do? Come here and lurk. sad, eh?
[b][red]This message was edited by stober at 2005-7-15 14:16:22[/red][/b][hr] : : if microsoft let off there, maybe its lenient here : : : : : : I thought NT4.0 was Posix complient. I could be wrong though. :
you are wrong -- NO version of MS-Windows is posix compliant.
Comments
:
I am not 100% sure, but I doubt it since Microsoft is hardly known for producing an OS that plays nice with others.
I think it is more or less a *nix thing.
:
:
Could be, was just a guess. The windows gurus usually post in the morning.
: Could be, was just a guess. The windows gurus usually post in the morning.
:
Where i am its 2:30 pm. Im across the dateline, go my page to see. Thats why my posts are in the 'morning' for you. Actually, its thursday 14. But you're up?
: : Could be, was just a guess. The windows gurus usually post in the morning.
: :
:
: Where i am its 2:30 pm. Im across the dateline, go my page to see. Thats why my posts are in the 'morning' for you. Actually, its thursday 14. But you're up?
:
:
:
:
It is not even midnight here right now. It was a bit before 10 when I replied I think. I am a bit of a night owl, and after spending nearly 10 straight hours coding, what do I do? Come here and lurk. sad, eh?
:
:
I thought NT4.0 was Posix complient. I could be wrong though.
: : if microsoft let off there, maybe its lenient here
: :
: :
:
: I thought NT4.0 was Posix complient. I could be wrong though.
:
you are wrong -- NO version of MS-Windows is posix compliant.
http://support.microsoft.com/default.aspx?scid=kb;en-us;149902
:
use conditional compiler directives.
[code]
#if defined(_WIN32)
// CreateThread(/* blabla*/)
#elif defined(_UNIX)
// create thread using posix functions
#endif
[/code]