I strongly suspect that you misread the page.

The initial example was a caller/caller setup. That is the ideal that you'd like to achive and could with co-routines, but C doesn't have them.

The second example was callee/callee. One half there goes with one half from the first example. The point being that changing the same code from caller to callee generally makes it a lot uglier. As the code becomes more complex, the ugliness grows rapidly.

From there he went on to explain the hack that enabled him to partially get to the ideal. The hack is complex, and the result is not quite as clean you'd like, but you get back a long way towards the ideal. In particular the complications come from having to insert appropriate macros, but the structure of the code does not change at all.

As for why he does this, his PuTTY program supports several different compression/encryption options with several different protocols that require parsing. If he had to rewrite one set or the other to be clean callees, that half of the code would become unmaintainable. With his hack to emulate co-routines, he keeps both halves fairly sane.

With proper co-routines, his ideal caller/caller example is even closer to what he would get - you just need to insert "yield" at the right places in the one that you want to really be a callee.


In reply to Re^3: Easy coroutines? by tilly
in thread Easy coroutines? by fletcher_the_dog

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.