Difference between revisions of "Example pthread demo"

From wiki.emacinc.com
Jump to: navigation, search
m (Tagged buggy)
(Added OE5 instructions)
(13 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{todo|Review(12.11.13-12:03->JG+);(12.11.13-17:25->MD-)|Jgreene|project=oe 4,oe 5,jg,md,Buggy}}
+
{{todo|SEOKWREV;(12.11.13-12:03->JG+);(12.11.13-17:25->MD-);(12.12.13-11:25->JG+);(12.31.13-12:45->MD+);(04.07.14-09:50->BS+);(04.10.14-11:00->BS+)|Jgreene|project=oe 4,oe 5,jg,md,SEOKWREV,mg,bs}}
 +
 
 +
{{#seo:
 +
|title=pthread demo
 +
|titlemode=append
 +
|keywords=pthread,pthread example
 +
|description=This is a guide to the <code>pthread_demo</code> C example project included in the EMAC OE SDK.
 +
}}
 
This is a guide to the <code>pthread_demo</code> C example project included in the EMAC OE SDK.
 
This is a guide to the <code>pthread_demo</code> C example project included in the EMAC OE SDK.
  
Line 10: Line 17:
 
== Opening, Building and Uploading the Project Files ==
 
== Opening, Building and Uploading the Project Files ==
  
<big>1. Open the C/C++ editing perspective.</big>
+
For information on opening the project from within Eclipse, please see [[Importing the EMAC OE SDK Projects with Eclipse]]. Then, follow [[Using the EMAC OE SDK Projects with Eclipse]] for information on how to build, upload and execute the example.
 
 
stub
 
 
 
<big>2. Open the project files.</big>
 
 
 
stub
 
  
<big>3. Build the project.</big>
+
Alternatively, the <code>Makefile</code> can be used with the <code>make</code> command from the commandline to build and upload the example.  For information on this method, please see [[Using EMAC OE SDK Example Projects]].
  
stub
+
====EMAC SDK 5.X====
  
<big>4. Upload the executables to the target system.</big>
+
For information on opening the project from within QtCreator, please see [[Getting_Started_With_Qt_Creator#Adding_Source_Files | QtCreator: Adding Source Files]]. Then, follow [[Getting Started With Qt Creator]] for information on how to build, upload and execute the example.
  
stub
+
Alternatively, the <code>CMakefile.txt</code> can be used with the <code>cmake</code> command from the commandline to build and upload the example.  For information on this method, please see [[Getting_Started_with_the_EMAC_OE_SDK#Target_Machine_Compiling | Getting Started with the EMAC OE SDK]].
  
 
==Usage and Behavior==  
 
==Usage and Behavior==  
  
'''This page needs information regarding the pthread code, to point to the parts that are of interest for writing multithreaded code using pthreads.'''
+
The <code>pthread_demo</code> project is an example of multithreaded code for generating and interacting with an arbitrary number of ''pthreads''. Within the '''pthread_demo.c''' C source file can be found demonstrations of how to, specifically:<br />
 +
*Create pthreads, line 90.
 +
*Write to pthreads, line 141.
 +
*Read from pthreads, line 127.
 +
*Terminate and clean up after pthreads, line 119.
  
 
===Hardware Requirements===
 
===Hardware Requirements===
Line 34: Line 39:
 
The <code>pthread_demo</code> C example project has no special hardware requirements. It should run just fine on any system for which the project files can be successfully compiled.
 
The <code>pthread_demo</code> C example project has no special hardware requirements. It should run just fine on any system for which the project files can be successfully compiled.
  
====Using <code>pthread_demo</code>====
+
===Using <code>pthread_demo</code>===
  
 
  ./pthread_demo n
 
  ./pthread_demo n
where n is the number of threads
+
where '''n''' is the number of threads
  
====Usage Example====
+
===Usage Example===
  
 
<syntaxhighlight lang="text">
 
<syntaxhighlight lang="text">

Revision as of 11:23, 25 September 2020

TODO: {{#todo:SEOKWREV;(12.11.13-12:03->JG+);(12.11.13-17:25->MD-);(12.12.13-11:25->JG+);(12.31.13-12:45->MD+);(04.07.14-09:50->BS+);(04.10.14-11:00->BS+)|Jgreene|oe 4,oe 5,jg,md,SEOKWREV,mg,bs}}

This is a guide to the pthread_demo C example project included in the EMAC OE SDK.

This is a simple pthreads example application. A single thread is created to generate random data that is read by a specified number of reader threads.

The term pthread refers to POSIX Threads, a POSIX standard for threads.

The pthread_demo project builds one executable: p_thread_demo.

Opening, Building and Uploading the Project Files

For information on opening the project from within Eclipse, please see Importing the EMAC OE SDK Projects with Eclipse. Then, follow Using the EMAC OE SDK Projects with Eclipse for information on how to build, upload and execute the example.

Alternatively, the Makefile can be used with the make command from the commandline to build and upload the example. For information on this method, please see Using EMAC OE SDK Example Projects.

EMAC SDK 5.X

For information on opening the project from within QtCreator, please see QtCreator: Adding Source Files. Then, follow Getting Started With Qt Creator for information on how to build, upload and execute the example.

Alternatively, the CMakefile.txt can be used with the cmake command from the commandline to build and upload the example. For information on this method, please see Getting Started with the EMAC OE SDK.

Usage and Behavior

The pthread_demo project is an example of multithreaded code for generating and interacting with an arbitrary number of pthreads. Within the pthread_demo.c C source file can be found demonstrations of how to, specifically:

  • Create pthreads, line 90.
  • Write to pthreads, line 141.
  • Read from pthreads, line 127.
  • Terminate and clean up after pthreads, line 119.

Hardware Requirements

The pthread_demo C example project has no special hardware requirements. It should run just fine on any system for which the project files can be successfully compiled.

Using pthread_demo

./pthread_demo n

where n is the number of threads

Usage Example

root@PPCE7:/tmp# ./pthread_demo 3
generating new random data
generating new random data
    reader: count = 0, data = 693451072
generating new random data
    reader: count = 1, data = 1195545710
generating new random data
    reader: count = 2, data = 462104121

Summary

The pthread_demo C example project demonstrates how to use pthreads. For another example of pthread usage see Example pthread hello.