Hi.
Busy-waiting is a known anti-pattern that should be avoided. However,
in C,
there is no standard alternative, so when a wait is required and it's
not busy,
the program becomes 100% non-portable. So then why not include this
type
of non-busy wait functionality in the standard?
Busy-waiting is a known anti-pattern that should be avoided. However,
in C,
there is no standard alternative, so when a wait is required and it's
not busy,
the program becomes 100% non-portable. So then why not include this
type
of non-busy wait functionality in the standard?
Comment