2014年11月20日木曜日

開発環境

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

その他参考書籍

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

コード(BBEdit, Emacs)

sample509.c

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

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

int main(int argc, char *argv[])
{
  beers = 2000000;
  pthread_t threads[20];
  int t;
  void *result;

  printf("ビールが%d本\n%d本のビール\n", beers, beers);
  for (t = 0; t < 20; t++)
    if (pthread_create(&threads[t], NULL, drink_lots, NULL) == -1)
      error("作成できません");
  for (t = 0; t < 20; t++)
    if (pthread_join(threads[t], &result) == -1)
      error("スレッドをジョインできません");
  printf("ビールが%d本あります\n", beers);
  return 0;
}

Makefile

P=sample509
CC=cc
CFLAGS=-g -Wall  # -O3
SRC=
OBJ=~/root/object_files/*.o $(P).o drink_lots.o
OBJ_SRC=~/root/object_files/*.c
LDLIBS=

$(P): $(OBJ) $(P).o
 $(CC) $(CFLAGS) $(LDLIBS) $(OBJ) -o $@

$(P).o: $(P).c
 $(CC) $(CFLAGS) -c $(P).c -o $@

入出力結果(Terminal)

$ make
cc -g -Wall   -c sample509.c -o sample509.o
cc -g -Wall    ~/root/object_files/*.o sample509.o drink_lots.o -o sample509
$ ./sample509
ビールが2000000本
2000000本のビール
ビールが1576123本あります
$ ./sample509
ビールが2000000本
2000000本のビール
ビールが518475本あります
$

0 コメント:

コメントを投稿