Title: COMP309/509 - Lecture 8 class: middle, center, inverse

COMP309/509 - Parallel and Distributed Computing

Lecture 8 - Multi-Threaded Programming

By Mitchell Welch

University of New England


Reading


Summary


pthread Primitives

#include <pthread.h>
int  pthread_create(pthread_t  *thread, 
                    pthread_attr_t * attr, 
                    void * (*start_routine)(void *), 
                    void * arg);

pthread Primitives


pthread Primitives

#include <pthread.h>
int pthread_join(pthread_t thread, void *value);

pthread Primitives


pthread Primitives

#include <pthread.h>
void pthread_exit(void *value);

pthread Primitives


pthread Primitives

#include "process.h"
#include "headers.h"
int main(void){
  pthread_t thread_1, thread_2;
  char *msg_1 = "Hello", *msg_2 = "World";
  /* error checking left out for legibility */
  pthread_create(&thread_1, NULL, pr_msg_fn, (void *)msg_1);
  pthread_create(&thread_2, NULL, pr_msg_fn, (void *)msg_2);
  return 0;
}

pthread Primitives


pthread Primitives


pthread Primitives

#include "process.h"
#include "headers.h"
int main(void){
  pthread_t thread_1, thread_2;
  char *msg_1 = "Hello", *msg_2 = "World";
  /* error checking left out for legibility */
  pthread_create(&thread_1, NULL, pr_msg_fn, (void *)msg_1);
  pthread_create(&thread_2, NULL, pr_msg_fn, (void *)msg_2);
  pthread_join(thread_1,NULL);
  pthread_join(thread_2,NULL);
  fprintf(stderr, "\n");
  return 0; 
}

pthread Primitives

#include "process.h"
#include "headers.h"
int main(void){
  int i;
  pthread_t threads[2];
  char *msgs[] = {"Hello", "World"};
  /* error checking left out for legibility */
  for(i = 0; i < 2 ; i++)
    pthread_create(&threads[i], NULL, pr_msg_fn, (void *)msgs[i]);
  for(i = 0; i < 2 ; i++)
    pthread_join(threads[i],NULL);
  fprintf(stderr, "\n");
  return 0; 
}

pthread Parameter Passing


pthread Parameter Passing

#include "headers.h"
/* error checking left out for legibility */
/* stuff to pass into thread */
typedef struct thread_arg {
  int* id;
  char* str;
  float cost; } arg_t;
/* stuff thread returns      */
typedef struct thread_val {
  int id;
  float cost; } val_t;

pthread Parameter Passing

void *entry_point(void *arg){
  arg_t input;
  val_t *output;
  input = *((arg_t *)arg);
  output = (val_t *)malloc(sizeof(val_t));
  fprintf(stderr, input.str, *input.id, input.cost);
  (*input.id)++;
  output->id   = *input.id;
  output->cost = input.cost * (*input.id);
  pthread_exit(output); 
}

pthread Parameter Passing

int main(int argc,  char *argv[]){
  pthread_t thread_id;
  arg_t     thread_arg;
  val_t     *thread_val;
  int       local = 7;
  char str[] = "Me be threaded: %d %f!!\n";
  fprintf(stderr, "local is now = %d\n", local);
  thread_arg.id = &local;
  thread_arg.str = str;
  thread_arg.cost = 3.14;
  pthread_create(&thread_id,NULL,entry_point, &thread_arg);
  pthread_join(thread_id,(void **)&thread_val);
  fprintf(stderr,
          "the thread produced: %d  %f\n", 
          thread_val->id,
          thread_val->cost);
  fprintf(stderr, "local is now = %d\n", local);
  exit(EXIT_SUCCESS); 
}

pthread Parameter Passing


pthread Parameter Passing

#include "headers.h"
/* error checking left out for legibility */
/* size of thread bevy       */
#define TH_NO  10
/* stuff to pass into thread */
typedef struct thread_arg {
  int id;
  float cost; } arg_t;
/* stuff thread returns      */
typedef struct thread_val {
  int id;
  float cost; } val_t; 

pthread Parameter Passing

void *entry_point(void *arg){
  arg_t input;
  val_t *output;
  announce();
  input = *((arg_t *)arg);
  output = (val_t *)malloc(sizeof(val_t));
  output->id   = input.id;
  output->cost = input.cost * input.id;
  pthread_exit(output); }

void announce(void){
  fprintf(stderr, 
      "Thread %lu of Process %ld with Parent  %ld\n", 
      (unsigned long int)pthread_self(), (long)getpid(), (long)getppid());
}

pthread Parameter Passing

int main(int argc,  char *argv[]){
  int i;
  pthread_t thread_ids[TH_NO];
  arg_t     thread_args[TH_NO];
  val_t     *thread_vals[TH_NO];
  announce();
  for(i = 0; i < TH_NO; i++){
    thread_args[i].id = i;
    thread_args[i].cost = 3.14;
  }
  ...

pthread Parameter Passing

...
  for(i = 0; i < TH_NO; i++){
    pthread_create(&thread_ids[i], NULL, entry_point, &thread_args[i]);
  }
  for(i = 0; i < TH_NO; i++)
    pthread_join(thread_ids[i],(void **)&thread_vals[i]);
  for(i = 0; i < TH_NO; i++)
    fprintf(stderr,
            "Thread %d produced: %d  %f\n", 
            i,
            thread_vals[i]->id,
            thread_vals[i]->cost);
  exit(EXIT_SUCCESS); 
}

pthread Parameter Passing

for(i = 0; i < TH_NO; i++)
    pthread_create(&thread_ids[i],NULL,entry_point,(void *)&i);

Thread Models


Thread Models


Thread Models


Thread Models


Summary


class: middle, center, inverse

Questions?


Reading