Posix???

Is it okay for win32????

Comments

  • : Is it okay for win32????
    :

    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.
  • if microsoft let off there, maybe its lenient here

  • : if microsoft let off there, maybe its lenient here
    :
    :
    Could be, was just a guess. The windows gurus usually post in the morning.
  • [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?
  • : if microsoft let off there, maybe its lenient here
    :
    :

    I thought NT4.0 was Posix complient. I could be wrong though.
  • [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.

    http://support.microsoft.com/default.aspx?scid=kb;en-us;149902


  • What do we use then for threading that is Cross platform independent?
  • : What do we use then for threading that is Cross platform independent?
    :

    use conditional compiler directives.
    [code]
    #if defined(_WIN32)
    // CreateThread(/* blabla*/)
    #elif defined(_UNIX)
    // create thread using posix functions
    #endif
    [/code]

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories