Slashdot Mirror


LSB & Posix Conflicts

An anonymous reader writes "The OpenGroup has published a detailed list of the conflicts between the Linux Standards Base and Posix ? that is accessible through their website. "

13 of 354 comments (clear)

  1. fp by Anonymous Coward · · Score: -1, Offtopic

    first post!!

  2. Second post? by Anonymous Coward · · Score: -1, Offtopic

    I think

    1. Re:Second post? by Anonymous Coward · · Score: -1, Offtopic

      nope. Third.

  3. FFFFFFFAILUREEEEEEEEE ! by Anonymous Coward · · Score: -1, Offtopic
  4. Re:How about making more Distros comply first. by Anonymous Coward · · Score: -1, Offtopic

    My journal has hot /. gossip.

    It's rumored that most web browsers don't process humour tags ...

  5. I would just like to say: by Anonymous Coward · · Score: -1, Offtopic

    Dear Mr. Malda,

    U MAEK ME FEEL LIEK TEH NATURAL GOATSE.

    Love,

    M. Sims

    Lameness filter encountered. Post aborted!
    Reason: Don't use so many caps. It's like YELLING.

  6. Open Topics by Anonymous Coward · · Score: -1, Offtopic

    There is a better article covering "open" topics here on Yahoo!.

  7. MOD PARENT UP; INSIGHTFUL by Anonymous Coward · · Score: -1, Offtopic

    what the hell is up with the mods? Troll!???

  8. Re:How about making more Distros comply first. by Anonymous Coward · · Score: -1, Offtopic

    Considering the only true part was about RPM being the LSB standard, I think he just might have been trolling

  9. Re:Oops by Rogerborg · · Score: 0, Offtopic

    > We had better fix this. I'll go ask SCO what to do.

    SCO: All your Linux Standard Base are belong to us.

    --
    If you were blocking sigs, you wouldn't have to read this.
  10. It's 'Most Stupid' no matter how many... by cnelzie · · Score: 1, Offtopic

    ...time you say 'stupidest' it still won't become a word...

    I find the misues of such a word by a programmer to be quite funny, since programmers can quite often be quite excellent with the written language.

    In fact, I know a few English majors that turned out to be exceptional programmers, since programming is simply a combination of imagination and learning the rules, complex or otherwise, of a new language. This isn't much of a leap from learning the rules of the English language.

    Yeah, go ahead and mod me off-topic, ignore the thread I am responding to why don't you...

    --
    If you ignore the other uses of a tool, does that make the tool less useful, or you less useful?
  11. Re:screw POSIX by Anonymous Coward · · Score: -1, Offtopic

    It's quite interesting how the parent got modded 'interesting'

  12. Re:WRONG! POSIX does some really dumb things!! by Tony-A · · Score: 0, Offtopic

    Computer instructions include arithmetic operations such as ADD or SUB.
    Computer instructions include logical operations such as AND or OR.
    Logical AND is maybe a bit redundant, (illogical AND?), but avoids confusion as a synonym for ADD as in "2 and 2 are 4".
    & is a binary operator which produces the logical AND of its two evaluated parameters.
    && is a flow control operator which evaluates its right-hand parameter only if required to determine the truth value. This is NOT what was referred to.

    ASM goes something like:
    LOAD flags
    AND FLAG_CONSTANT
    JZ around_blah

    C could be as simple as:
    if ( flags & FLAG_CONSTANT ) { blah ; }