2014年8月6日水曜日

開発環境

Head First C ―頭とからだで覚えるCの基本(David Griffiths (著)、Dawn Griffiths (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の12章(スレッド: 並列の世界)、ビールマグネット(p.509)を解いてみる。

その他参考書籍

ビールマグネット(p.509)

コード(BBEdit, Emacs)

sample509.c

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>

#include "error.h"
#include "drink_lots.h"

int main(int argc, char *argv[])
{
  pthread_t threads[20];
  int t;
  char msg[100];

  beers = 2000000;
  printf("壁にはビールが%i本\n%i本のビール\n", beers, beers);
  for (t = 0; t < 20; t++)
    if (pthread_create(&threads[t], NULL, drink_lots, NULL) == -1) {
      sprintf(msg, "スレッドthreads[%i]を作成できません。", t);
      error(msg);
    }

  void *result;
  for (t = 0; t < 20; t++)
    if (pthread_join(threads[t], &result) == -1) {
      sprintf(msg, "スレッドthreads[%i]をジョインできません。", t);
      error(msg);
    }

  printf("現在、壁にはビールが%i本あります。\n", beers);
  return (0);
}

Makefile

CC=cc
CFLAGS=-g -Wall
SRC=sample509.c drink_lots.c error.c
OBJ=sample509.o drink_lots.o error.o

all: sample509

sample509: $(OBJ)
 $(CC) $(CFLAGS) $(OBJ) -o sample509

sample509.o: drink_lots.h error.h sample509.c
 $(CC) $(CFLAGS) -c sample509.c -o sample509.o

drink_lots.o: drink_lots.h drink_lots.c
 $(CC) $(CFLAGS) -c drink_lots.c -o drink_lots.o

error.o: error.h error.c
 $(CC) $(CFLAGS) -c error.c -o error.o

clear:
 rm -rf sample509 $(OBJ)

入出力結果(Terminal)

$ make
cc -g -Wall -c sample509.c -o sample509.o
cc -g -Wall -c drink_lots.c -o drink_lots.o
cc -g -Wall sample509.o drink_lots.o error.o -o sample509
$ ./sample509 
壁にはビールが2000000本
2000000本のビール
現在、壁にはビールが1121722本あります。
$ ./sample509 
壁にはビールが2000000本
2000000本のビール
現在、壁にはビールが1296263本あります。
$ ./sample509 
壁にはビールが2000000本
2000000本のビール
現在、壁にはビールが1144193本あります。
$ ./sample509 
壁にはビールが2000000本
2000000本のビール
現在、壁にはビールが1291688本あります。
$ ./sample509 
壁にはビールが2000000本
2000000本のビール
現在、壁にはビールが1392433本あります。
$

0 コメント:

コメントを投稿