Skip to content

Instantly share code, notes, and snippets.

@uncommoncode
Last active August 29, 2015 14:10
Show Gist options
  • Save uncommoncode/9551f6eeed67f1440248 to your computer and use it in GitHub Desktop.
Save uncommoncode/9551f6eeed67f1440248 to your computer and use it in GitHub Desktop.
Example code for OpenThreads
#include <OpenThreads/Thread>
class Thread : public OpenThreads::Thread
{
public:
Thread() : OpenThreads::Thread()
{
// initializer code here
}
virtual void run()
{
// thread code here
}
};
int main()
{
Thread *thread = new Thread();
thread->start();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment