view DPP/dpp.h @ 33:3946f8d26710 draft default tip

add benchmarck/binary-trees
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 09 Apr 2013 16:41:30 +0900
parents a89b61162c29
children
line wrap: on
line source

#ifndef _DPP_H_
#define _DPP_H_
#define NULL (0)

#include "dpp_common.h"

extern code putdown_lfork(PhilsPtr self);
extern code putdown_rfork(PhilsPtr self);
extern code eating(PhilsPtr self);
extern code hungry2(PhilsPtr self);
extern code hungry1(PhilsPtr self);
extern code pickup_rfork(PhilsPtr self);
extern code pickup_lfork(PhilsPtr self);
extern code thinking(PhilsPtr self);

#endif