I\'m relatively new to coding; most of my \"work\" has been just simple GUI apps that only function for one thing, so I haven\'t had to thread much.
Anyway, one thing I\
Just as some additional info, typical none ending loops use
for(;;) { ... }
as there is no compare done in the loop. When doing threads it is best to check a flag if the loop to end or not though.