-
Notifications
You must be signed in to change notification settings - Fork 0
/
pthreads_exemplos.c
150 lines (117 loc) · 3.5 KB
/
pthreads_exemplos.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
// #pragma once
#define _CRT_SECURE_NO_WARNINGS 1
#define _WINSOCK_DEPRECATED_NO_WARNINGS 1
// Exemplo 1: Hello World! com PThreads.
#include <pthread.h>
#include <stdlib.h>
#include <stdio.h>
void *thread( void* );
int main() {
// Estrutura que define uma thread.
pthread_t tid;
printf( "Hello World da thread principal!\n" );
// Cria uma thread com os atributos definidos em tid, op��es padr�o NULL,
// thread � fun��o que cont�m o c�digo da thread e n�o h� parametros de entrada (ou seja, NULL).
pthread_create( &tid, NULL, thread, NULL );
// Espera a thread "tid" terminar e n�o captura seu valor de retorno retorno (NULL)
pthread_join( tid, NULL );
// system( "pause" );
// Retorno NULL da thread principal. Desnecess�rio.
pthread_exit( ( void * ) NULL );
}
void *thread( void *vargp ) {
printf( "Hello World da thread criada pela thread principal!\n" );
pthread_exit( ( void * ) NULL );
}
// --- Fim Exemplo 1 ---
// // Exemplo 2: Escopo de vari�veis
// #include <stdio.h>
// #include <stdlib.h>
// #include <pthread.h>
// int global;
// void *thr_func( void* );
// int main( void ) {
// pthread_t tid;
// global = 20;
// printf( "Thread principal: %d\n", global );
// pthread_create( &tid, NULL, thr_func, NULL );
// pthread_join( tid, NULL );
// printf( "Thread principal: %d\n", global );
// // system( "pause" );
// return 0;
// }
// void *thr_func( void *arg ) {
// global = 40;
// printf( "Novo thread: %d\n", global );
// }
// // --- Fim Exemplo 2 ---
// // --- Exemplo 3: Multiplas Threads com par�metro
// #include <stdio.h>
// #include <stdlib.h>
// #include <pthread.h>
// #define NUM_THREADS 5
// void *PrintHello( void *threadid ) {
// int tid;
// tid = ( int )threadid;
// printf( "Hello World! It's me, thread #%d!\n", tid );
// pthread_exit( NULL );
// }
// int main ( int argc, char *argv[] ) {
// int rc, t;
// pthread_t threads[ NUM_THREADS ];
// for ( t = 0; t < NUM_THREADS; t++ ) {
// printf( "In main: creating thread %d\n", t );
// rc = pthread_create( &threads[ t ], NULL, PrintHello, ( void * )t );
// if ( rc ) {
// printf( "ERROR code is %d\n", rc );
// exit( -1 );
// }
// }
// // system( "pause" );
// pthread_exit( NULL );
// }
// // --- Fim Exemplo 3 ---
// // --- Exemplo 4: Usando mutexes
// #include <stdio.h>
// #include <stdlib.h>
// #include <pthread.h>
// #define TAM 1000
// #define NTHREADS 10
// int a[ TAM ];
// int global_index = 0;
// int sum = 0;
// // Declara��o do mutex
// pthread_mutex_t mutex1;
// void *slave ( void *nenhum ) {
// int local_index, partial_sum = 0;
// do {
// pthread_mutex_lock( &mutex1 );
// local_index = global_index;
// global_index++;
// pthread_mutex_unlock( &mutex1 );
// if ( local_index < TAM ) partial_sum += a[ local_index ];
// } while ( local_index < TAM );
// pthread_mutex_lock( &mutex1 );
// sum += partial_sum;
// pthread_mutex_unlock( &mutex1 );
// return( NULL );
// }
// main() {
// int i;
// pthread_t thread [ NTHREADS ];
// pthread_mutex_init( &mutex1, NULL );
// for ( i = 0; i < TAM; i++ ) a[ i ] = i + 1;
// for ( i = 0; i < NTHREADS; i++ )
// if ( pthread_create( &thread[ i ], NULL, slave, NULL ) != 0 ) {
// perror( "Pthread_create falhou" );
// exit( 1 );
// }
// for ( i = 0; i < NTHREADS; i++ )
// if ( pthread_join( thread[ i ], NULL ) != 0 ) {
// perror( "Pthread_join falhou" );
// exit( 1 );
// }
// printf( "A soma eh %d \n", sum );
// // system( "pause" );
// }
// // --- Fim do Exemplo 4 ---