hello.cpp
上传用户:sunlush021
上传日期:2022-06-22
资源大小:90k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. /*
  2. Copyright (c) 2010 Marcus Geelnard
  3. This software is provided 'as-is', without any express or implied
  4. warranty. In no event will the authors be held liable for any damages
  5. arising from the use of this software.
  6. Permission is granted to anyone to use this software for any purpose,
  7. including commercial applications, and to alter it and redistribute it
  8. freely, subject to the following restrictions:
  9.     1. The origin of this software must not be misrepresented; you must not
  10.     claim that you wrote the original software. If you use this software
  11.     in a product, an acknowledgment in the product documentation would be
  12.     appreciated but is not required.
  13.     2. Altered source versions must be plainly marked as such, and must not be
  14.     misrepresented as being the original software.
  15.     3. This notice may not be removed or altered from any source
  16.     distribution.
  17. */
  18. #include <iostream>
  19. #include <tinythread.h>
  20. using namespace std;
  21. using namespace tthread;
  22. // This is the child thread function
  23. void HelloThread(void * aArg)
  24. {
  25.   cout << "Hello world!" << endl;
  26. }
  27. // This is the main program (i.e. the main thread)
  28. int main()
  29. {
  30.   // Start the child thread
  31.   thread t(HelloThread, 0);
  32.   // Wait for the thread to finish
  33.   t.join();
  34. }