18 lines
203 B
C
18 lines
203 B
C
#ifndef _MBCICO_H
|
|
#define _MBCICO_H
|
|
|
|
/* $Id$ */
|
|
|
|
/*
|
|
* Global threads for mbcico
|
|
*/
|
|
#define NUM_THREADS 4
|
|
pthread_t threads[NUM_THREADS];
|
|
|
|
|
|
void usage(void);
|
|
void free_mem(void);
|
|
void die(int);
|
|
|
|
#endif
|