ldb speed test - needs free block dev
[tridge/junkcode.git] / threads.c
1 /* a simple threads experiment
2 tridge, february 1995
3 */
4
5 typedef struct thread_struct
6 {
7   struct thread_struct *next;
8   char *stack;
9   
10
11
12 }