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

COMP309/509 - Parallel and Distributed Computing

Lecture 7 - Multi-Threaded Programming

By Mitchell Welch

University of New England


Reading


Summary


Overview of Threads


Overview of Threads


Overview of Threads


Overview of Threads


for(expression1; expression2; expression3)
     expression4;
     expression1;
     expression2;       
     expression4;
     expression3;
     expression2;
     expression4;
     expression3;
         :

Overview of Threads


Overview of Threads


Overview of Threads


Overview of Threads


Overview of Threads

#include <sys/types.h>  /* for getppid    */
#include <unistd.h>     /* for getppid    */
#include <pthread.h>    /* for threads    */
#include <stdio.h>      /* for perror etc */
#include <stdlib.h>     /* for exit       */
static pid_t mainThread;
static pid_t childThread;

void *child(void* arg){
  childThread = getppid();
  return arg;
}
int main(){
  pthread_t tid;
  mainThread = getppid();
  if(pthread_create(&tid, NULL, child, (void *)NULL){
    perror("Could not create thread");
    exit(EXIT_FAILURE);
  } else {
    pthread_join(tid, NULL);
  }
  if(childThread == mainThread){
    printf("Your system is using NPTL\n");
  } else {
    printf("Your system is using LinuxThreads\n");
  }
  exit(EXIT_SUCCESS);
}

Processes vs Threads


Processes vs Threads


Processes vs Threads


Processes vs Threads


Processes vs Threads


Thread creation

#include <pthread.h>
void * thread_entry(void *arg);
pthread_t my_thread;

Thread creation

void *thread_arg = (void *)<some arbitrary expression>;
 pthread_create(&my_thread, NULL, thread_entry, thread_arg);

Thread creation


Reentrant Code


int g_var = 1;
int f(){
    g_var = g_var + 2;
    return g_var;
}

int g(){
    return f() + 2;
}

(Source: http://en.wikipedia.org/wiki/Reentrancy_%28computing%29)


Reentrant Code

int f(int i){
    return i + 2;
}

int g(int i){
    return f(i) + 2;
}

Reentrant Code


Reentrant Code

int myFunction(){
    mutex_lock();
    // ...
    function body code
    // ...
    mutex_unlock();
}

Multi-threaded Examples


Multi-threaded Examples

void *process_fd(void *);
void process_command(char *, int);
void *pr_msg_fn(void *ptr);

Multi-threaded Examples

void *process_fd(void *);
void process_command(char *, int);
void *pr_msg_fn(void *ptr);

Multi-threaded Examples

#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include <pthread.h>
#include <stdlib.h>

Multi-threaded Examples

#include "process.h"
#include "headers.h"
#define BUFSIZE 1024
void *process_fd(void *arg){
  int nbytes, fd = *((int *)(arg));
   char buf[BUFSIZE];
   while(1){
      if(((nbytes = read(fd, buf, BUFSIZE)) == -1) &&
           (errno != EINTR)) break;
      if(!nbytes) break;
      process_command(buf, nbytes);
   }
   return NULL;
}
void process_command(char *buffy, int bytes){
  if(write(STDOUT_FILENO, buffy, bytes) < bytes)
    fprintf(stderr, "write of buffy failed");
}
void *pr_msg_fn(void *arg){
  fprintf(stderr, "%s ", (char *)arg); 
  return NULL;
}

Multi-threaded Examples

#include "process.h"
#include "headers.h"
int main(){
  int fd_1 = open("makefile", O_RDONLY);
  if(fd_1 == -1)
    perror("Could not open makefile");
  else 
    process_fd(&fd_1);
  return 0;
}

Multi-threaded Examples

#include "process.h"
#include "headers.h"
int main(){
  pthread_t tid;
  int fd = open("makefile", O_RDONLY);
  if(fd == -1)
    perror("Could not open makefile");
  else if(pthread_create(&tid, NULL, process_fd, (void *)&fd) != 0)
    perror("Could not create thread");
  else if(pthread_join(tid, NULL) != 0)
    perror("Could not join with thread");
  else exit(EXIT_SUCCESS);
  exit(EXIT_FAILURE);
}

Multi-threaded Examples


Multi-threaded Examples

  #include <pthread.h>

and to be compiled using gcc (and linked) with the flag: -pthread


Summary


class: middle, center, inverse

Questions?


Reading