/*************************************************************************
* *
* Export: proctree.e *
* *
* realizzato dal Gruppo 17 di Lab2 Anno Accademico 1995/96 *
* *
* Lorenzo Claudio Valerio Riccardo Emiliano *
* Coronati Lanconelli Paolini Solmi Trentini *
* *
**************************************************************************/
#ifndef _PROCT_E
#define _PROCT_E
#include "types.h"
#include "thrqueue.h"
#include "proctree.h"
extern void initProc();
extern thr_t *createProc(/* thr_t *, state_t * */);
extern void termProc(/* thr_t * */);
extern thr_t *createThread(/* thr_t *, state_t * */);
extern void termThread(/* thr_t * */);
#endif