Last active
August 29, 2015 14:10
-
-
Save uncommoncode/9551f6eeed67f1440248 to your computer and use it in GitHub Desktop.
Example code for OpenThreads
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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