File: main.c

package info (click to toggle)
xcopilot 1%3A0.6.6
  • links: PTS
  • area: contrib
  • in suites: potato, slink
  • size: 3,252 kB
  • ctags: 3,406
  • sloc: ansic: 37,932; cpp: 1,918; sh: 329; makefile: 68
file content (732 lines) | stat: -rw-r--r-- 18,766 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
/*****************************************************************************

			       XCopilot

This code is part of XCopilot, a port of copilot

		  Copyright (C) 1997 Ivan A. Curtis
		       icurtis@radlogic.com.au

The original MS-Windows95 copilot emulator was written by Greg Hewgill.
The following copyright notice appeared on the original copilot sources:

		  Copyright (c) 1996 Greg Hewgill

 MC68000 Emulation code is from Bernd Schmidt's Unix Amiga Emulator.
       The following copyright notice appeared in those files:

	  Original UAE code Copyright (c) 1995 Bernd Schmidt

This code must not be distributed without these copyright notices intact.

*******************************************************************************
*******************************************************************************

Filename:	main.c

Description:	main file for xcopilot emulator

Update History:   (most recent first)
   Ian Goldberg   26-Jun-98 12:37 -- Made memversion command-line option
                                     and XCOPILOTMEMVERSION env. var.
   Gene McCulley  30-Apr-98 07:02 -- Made ramsize command-line option
   Gene McCulley  28-Apr-98 16:23 -- Added ~/.xcopilot support
   Ian Goldberg   25-Sep-97 11:09 -- rewrite of serial and gdb support
   Ian Goldberg   11-Sep-97 09:48 -- added bus error support
   Jeff Dionne    10-Jul-97 10:00 -- added support for gdb debugging via TCP
   Ian Goldberg   06-Jul-97 17:34 -- added support for serial I/O via a pty
   Brian Grossman 30-Jun-97 24:00 -- added pixeldoubling
   Ian Goldberg   18-Apr-97 11:13 -- added support for gdb debugging via a pty
   I. Curtis       9-Apr-97 11:42 -- v0.4
   I. Curtis      18-Mar-97 14:00 -- v0.3
   I. Curtis      26-Feb-97 13:52 -- first release
   I. Curtis      23-Feb-97 20:43 -- Created.

******************************************************************************/

#include <config.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <pwd.h>
#include <sys/wait.h>
#include <termios.h>
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#include <unistd.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>

#include "sysdeps.h"
#include "shared.h"
#include "memory.h"
#include "custom.h"
#include "newcpu.h"

#include "display.h"
#include "pilotcpu.h"
#include "pdebug.h"
#include "main.h"

extern int tcp_open(char *name);


/*****************************************************************************
 *				Global symbols				     *
 *****************************************************************************/
char *id_version = "XCopilot "VERSION;


/*****************************************************************************
 *				Local symbols				     *
 *****************************************************************************/

/*
 * These error messages correspond to the codes in memory.h
 */
static const char *CpuInitErrors[] = {
  "",
  "ROM file not found",
  "Error loading ROM file",
  "Error loading RAM file",
};


/*****************************************************************************
 *				Local functions				     *
 *****************************************************************************/

/*********************************************
 * attach to the shared memory blocks        *
 * for the main memory and for the registers *
 * of the custom block                       *
 *********************************************/
static shared_img *attach_shm(Pilot *pilot)
{
  void *s;

  s = shmat(pilot->shmid, (char *)0, 0);
  if (s == (void *)-1) {
    perror("shmat");
    exit(1);
  }
  return((shared_img *)s);
}

/*************************************
 * This is the CPU emulation thread
 *************************************/
static void cpu_proc(shared_img *shptr, Pilot *pilot)
{
  int             r;

  /*
   * init cpu
   * cpu event loop
   */
  r = CPU_init(shptr, pilot->RamSize, pilot->DataDir, pilot->RomFile,
               pilot->RamFile, pilot->ScratchFile, pilot->ResetPilot,
               pilot->NoCheck);
  if (r != 0) {
    fprintf(stderr, "E - %s\n", CpuInitErrors[r]);
    exit(1);
  }
  /*
   * fprintf(stderr, "I - calling CPU..\n"); fflush(stderr);
   */
  CPU(shptr);
}

/*************************************
 * This is the LCD emulation thread *
 *************************************/
static void lcd_proc(shared_img *shptr, Pilot *pilot)
{
  int no_x_shm = pilot->NoXShm;
  int magfactor = pilot->MagFactor;
  int private_cmap = pilot->PrivateColormap;
  char *sbuf;

   /*
    * initialize memory
    * init xwindows
    * process events
    */
  memory_init(pilot->RamSize, pilot->DataDir, pilot->RomFile, pilot->RamFile,
              pilot->ScratchFile, pilot->ResetPilot, pilot->NoCheck);
  sbuf = xcpInitialize(shptr, pilot->context, pilot->topWidget, no_x_shm, magfactor,
                       private_cmap, NULL, pilot->bbg);
  xcpEventLoop(pilot->context, pilot->topWidget, sbuf, shptr);
}

/********************************
 * This is the Debugger thread *
 ********************************/
#define DEBUG_PORTNUM 2000
static void debug_proc(shared_img *shptr, Pilot *pilot)
{
  if (strcmp(pilot->Debugging, "old")) {
    return;				/* we are not debugging */
  }

  /*
   * initialize memory
   * initialize Shptr in newcpu module
   */
  memory_init(pilot->RamSize, pilot->DataDir, pilot->RomFile, pilot->RamFile,
              pilot->ScratchFile, pilot->ResetPilot, pilot->NoCheck);
  MC68000_setshare(shptr);

  /* Old-style debugging on port 2000 */
  pdebug_loop(pilot->DebugArgs, DEBUG_PORTNUM, shptr);
  shptr->CpuReq = cpuExit;
}

static int correct_write(int fd, unsigned char *buf, int amt)
{
    int wrote = 0;

    while (amt) {
	int res = write(fd, buf, amt);
	if (res <= 0) return res;
	wrote += res;
	buf += res;
	amt -= res;
    }
    return wrote;
}

static void attach_serial(unsigned use_serial, char *SerialPort, int *readfd,
                          int *writefd)
{
  /* Attach to the pty for serial I/O */
  if (use_serial) {
    close(0);
    close(1);
    if (open(SerialPort, O_RDWR) != 0) {
	fprintf(stderr, "Error opening %s\n", SerialPort);
	perror("read");
	exit(1);
    }
    if (dup2(0,1) != 1) {
	fprintf(stderr, "Error opening %s\n", SerialPort);
	perror("dup2");
	exit(1);
    }
    fprintf(stderr, "Serial I/O on %s\n", SerialPort);
  }
  *readfd = 0;
  *writefd = 1;
}

static void attach_gdb(char *DebugArgs, int *gdbfd)
{
    int gdb_fd;

    /* Get a fd for talking to gdb, if necessary */
    if (!DebugArgs) DebugArgs = "/dev/ptyqf";
    if (strchr(DebugArgs, ':')) {
        /* gdb on a TCP port, actually */
        gdb_fd = tcp_open(DebugArgs);
    } else {
        gdb_fd = open(DebugArgs, O_RDWR);
    }
    if (gdb_fd < 0) {
	perror("open");
	fprintf(stderr, "Debugging failed on %s; "
	                "resuming without debugging.\n", DebugArgs);
    } else {
	fprintf(stderr, "Debugging on %s\n", DebugArgs);
    }
    *gdbfd = gdb_fd;
}

static void set_baud(int fd, int baudrate)
{
    struct termios tempio;
    unsigned int brate;

    /* get current setting */
    if (tcgetattr(fd, &tempio) < 0) {
	/* We can't do this on this kind of fd */
	return;
    }
    switch (baudrate) {
    case 300:
	brate = B300;
	break;
    case 1200:
	brate = B1200;
	break;
    case 2400:
	brate = B2400;
	break;
    case 4800:
	brate = B4800;
	break;
    case 9600:
	brate = B9600;
	break;
    case 19200:
	brate = B19200;
	break;
    case 38400:
	brate = B38400;
	break;
#ifdef B57600
    case 57600:
        brate = B57600;
        break;
#endif
    default:
	fprintf(stderr, "E - unsupported baudrate %d; using 38400\n",
			    baudrate);
	brate = B38400;
    }
    tempio.c_iflag = 0;
    tempio.c_oflag = 0;
    tempio.c_cflag |= CLOCAL;
    tempio.c_lflag = 0;
    tempio.c_cc[VMIN] = 1;
    tempio.c_cc[VTIME] = 0;
    if (cfsetispeed(&tempio, brate) < 0) {
	perror("E - cfsetispeed");
    }
    if (cfsetospeed(&tempio, brate) < 0) {
	perror("E - cfsetospeed");
    }
    if (tcsetattr(fd, TCSANOW, &tempio) < 0) {
	perror("E - tcsetattr");
    }
}

static void set_flags(int fd, int flags)
{
    struct termios tempio;

    /* get current setting */
    if (tcgetattr(fd, &tempio) < 0) {
	/* We can't do this on this kind of fd */
	return;
    }
    tempio.c_cflag &= ~(CSIZE|CSTOPB|PARENB|PARODD);
    if (flags & 1) {
	tempio.c_cflag |= CS8;
    } else {
	tempio.c_cflag |= CS7;
    }
    if (flags & 2) {
	tempio.c_cflag |= CSTOPB;
    }
    if (flags & 4) {
	tempio.c_cflag |= PARODD;
    }
    if (flags & 8) {
	tempio.c_cflag |= PARENB;
    }
    if (tcsetattr(fd, TCSANOW, &tempio) < 0) {
	perror("E - tcsetattr");
    }
}

/******************************
 * This is the gdb I/O thread *
 ******************************/
static void gdb_proc(shared_img *shptr, Pilot *pilot)
{
    fd_set	orig_readers;
    fd_set	readers;
    int		maxfd;
    int		gdb_towrite = pilot->gdb_in;
    int		gdb_fd = -1;

    if (strcmp(pilot->Debugging, "gdb")) {
	return;
    }

    attach_gdb(pilot->DebugArgs, &gdb_fd);

    FD_ZERO(&orig_readers);
    FD_SET(gdb_fd, &orig_readers);
    FD_SET(gdb_towrite, &orig_readers);
    maxfd = 0;
    if (gdb_fd > maxfd) maxfd = gdb_fd;
    if (gdb_towrite > maxfd) maxfd = gdb_towrite;
    maxfd++;

    /*
     * WARNING: This uses a shared memory data structure to store the FIFO. The
     * consumer is getting things from this _at the same time_ as this is
     * producing.  Examine custom.c and take a course in concurrent programming
     * before modifying this.  :-) - Ian
     */
    while(shptr->CpuReq != cpuExit) {
	struct timeval tv;
	int selres;
	unsigned char buf[FIFO_SIZE];
	
	readers = orig_readers;
	tv.tv_sec = 1;		/* check once a second if we want to quit */
	tv.tv_usec = 0;

	selres = select(maxfd, &readers, NULL, NULL, &tv);
	if (selres < 0) {
	    perror("select");
	    return;
	}
	if (selres > 0) {
	    /* There's something ready to go. */
	    int res;
	    if (gdb_towrite >= 0 && FD_ISSET(gdb_towrite, &readers)) {
		/* The CPU wants to write to the gdb port */
		res = read(gdb_towrite, buf, FIFO_SIZE);
		if (res > 0) {
		    if (correct_write(gdb_fd, buf, res) <= 0) {
			if (!strcmp(pilot->Debugging, "gdb")) {
			    close(gdb_fd);
			    attach_gdb(pilot->DebugArgs, &gdb_fd);
			}
		    }
		}
	    }

	    if (gdb_fd >= 0 && FD_ISSET(gdb_fd, &readers)) {
		/* There is data available on the gdb port */
		int curhead = shptr->gdb.head;
		int curtail = shptr->gdb.tail;
		if (curtail >= curhead && 
		    (curtail != FIFO_SIZE-1 || curhead != 0)) {
		    res = read(gdb_fd,
				shptr->gdb.fifo+curtail, FIFO_SIZE-curtail);
		    if (res > 0) {
			curtail += res;
			if (curtail == FIFO_SIZE) curtail = 0;
			shptr->gdb.tail = curtail;
		    } else if (!strcmp(pilot->Debugging, "gdb")) {
			close(gdb_fd);
			attach_gdb(pilot->DebugArgs, &gdb_fd);
		    }
		} else if (curtail+1 < curhead) {
		    res = read(gdb_fd,
				shptr->gdb.fifo+curtail, curhead-curtail-1);
		    if (res > 0) {
			curtail += res;
			if (curtail == FIFO_SIZE) curtail = 0;
			shptr->gdb.tail = curtail;
		    } else if (!strcmp(pilot->Debugging, "gdb")) {
			close(gdb_fd);
			attach_gdb(pilot->DebugArgs, &gdb_fd);
		    }
		}
	    }
	}
    }
}

/*********************************
 * This is the serial I/O thread *
 *********************************/
static void serial_proc(shared_img *shptr, Pilot *pilot)
{
    fd_set	orig_readers;
    fd_set	readers;
    int		maxfd;
    int		serial_towrite = pilot->serial_in;
    int		serial_read = 0;
    int		serial_write = 1;
    int		serial_baud = 0;
    int		serial_flags = 0;

    /* Start the CPU */
    CPU_start(shptr);

    attach_serial(pilot->Serial, pilot->SerialPort, &serial_read,
                  &serial_write);

    FD_ZERO(&orig_readers);
    FD_SET(serial_towrite, &orig_readers);
    FD_SET(serial_read, &orig_readers);
    maxfd = 0;
    if (serial_towrite > maxfd) maxfd = serial_towrite;
    if (serial_read > maxfd) maxfd = serial_read;
    maxfd++;

    /*
     * WARNING: This uses a shared memory data structure to store the FIFO. The
     * consumer is getting things from this _at the same time_ as this is
     * producing.  Examine custom.c and take a course in concurrent programming
     * before modifying this.  :-) - Ian
     */
    while(shptr->CpuReq != cpuExit) {
	struct timeval tv;
	int selres;
	unsigned char buf[FIFO_SIZE];
	
	readers = orig_readers;
	tv.tv_sec = 1;		/* check once a second if we want to quit */
	tv.tv_usec = 0;

	selres = select(maxfd, &readers, NULL, NULL, &tv);
	if (selres < 0) {
	    perror("select");
	    return;
	}
	if (selres > 0) {
	    /* There's something ready to go. */
	    int res;

	    if (serial_towrite >= 0 && FD_ISSET(serial_towrite, &readers)) {
		/* The CPU wants to write to the serial port */
                res = read(serial_towrite, buf, FIFO_SIZE);
		if (res > 0) {
		    /* Check the baud rate */
		    if (serial_baud != shptr->serial_baud) {
			set_baud(serial_write, shptr->serial_baud);
			serial_baud = shptr->serial_baud;
		    }
		    if (serial_flags != shptr->serial_flags) {
			set_flags(serial_write, shptr->serial_flags);
			serial_flags = shptr->serial_flags;
		    }
		    if (correct_write(serial_write, buf, res) <= 0) {
			attach_serial(pilot->Serial, pilot->SerialPort,
			              &serial_read, &serial_write);
		    }
		}
	    }

	    if (serial_read >= 0 && FD_ISSET(serial_read, &readers)) {
		/* There is data available on the serial port */
		int curhead = shptr->serial.head;
		int curtail = shptr->serial.tail;
		if (curtail >= curhead &&
		    (curtail != FIFO_SIZE-1 || curhead != 0)) {
		    res = read(serial_read,
				shptr->serial.fifo+curtail, FIFO_SIZE-curtail);
		    if (res > 0) {
			curtail += res;
			if (curtail == FIFO_SIZE) curtail = 0;
			shptr->serial.tail = curtail;
		    } else {
			attach_serial(pilot->Serial, pilot->SerialPort,
			              &serial_read, &serial_write);
		    }
		} else if (curtail+1 < curhead) {
		    res = read(serial_read,
				shptr->serial.fifo+curtail, curhead-curtail-1);
		    if (res > 0) {
			curtail += res;
			if (curtail == FIFO_SIZE) curtail = 0;
			shptr->serial.tail = curtail;
		    } else {
			attach_serial(pilot->Serial, pilot->SerialPort,
			              &serial_read, &serial_write);
		    }
		}
	    }

	}
    }
}

/*****************************************************************************
 *			Pilot Thread stuff
 *****************************************************************************/
typedef void PT_proc(shared_img *shptr, Pilot *pilot);

static void
PT_create(Pilot *pilot, PT_proc *proc)
{
	pid_t	pid;
	/*
	 * fork off a new thread
	 */
	if ((pid = fork()) < 0) {
		perror("fork");
		exit(1);

	} else if (pid == 0) {
		shared_img *shptr;

		shptr = attach_shm(pilot);
		proc(shptr, pilot);
  		shmdt((char *)shptr);

		exit(0);
	} else {
		pilot->threads++;
	}
}

static void
PT_wait(Pilot *pilot)
{
	/*
	 * catch thread as they exit
	 */
	while (pilot->threads > 0) {
		int	status;

		if (wait(&status) < 0) {
			if (errno == EINTR) {
			} else if (errno == ECHILD) {
				exit(-1); /* Hey, where did everyone go? */
			} else {
				exit(-1); /* not unexpected, what the hell? */
			}

		} else {
			pilot->threads--;
		}
	}
}

static void expand_tilde(char **string)
{
  if (*string[0] == '~') {
    struct passwd *user_info;
    char *new_dir;
    char *end_of_name = strchr(*string, '/');

    if (end_of_name == *string + 1 )
      user_info = getpwuid(getuid()); 
    else {
      char *name;
      int name_len;

      name_len = end_of_name - &(*string)[0] - 1;
      name = malloc(name_len + 1);
      strncpy(name, &(*string)[1], name_len);
      name[name_len] = '\0';
      user_info = getpwnam(name); 
      free(name);
    }

    new_dir = malloc(strlen(user_info->pw_dir) + strlen(end_of_name + 1) + 2);
    strcpy(new_dir, user_info->pw_dir);
    strcat(new_dir, "/");
    strcat(new_dir, end_of_name + 1);
    *string = new_dir;
  }
}

static void add_slash(char **string)
{
  if ((*string)[strlen(*string) - 1] != '/') {
    char *new_string = malloc(strlen(*string) + 2);

    strcpy(new_string, *string);
    strcat(new_string, "/");
    *string = new_string;
  }
}

/*****************************************************************************
 *                                                                           *
 *		     Main - Execution starts here                            *
 *                                                                           *
 *****************************************************************************/
int init(Pilot *pilot)
{
  struct stat buf;

  expand_tilde(&pilot->DataDir);
  add_slash(&pilot->DataDir);
  if (stat(pilot->DataDir, &buf) == -1) {
    if (errno == ENOENT) {
      if (mkdir(pilot->DataDir, S_IRWXU)) {
        perror("Could not create rc directory");
        exit(1);
      }
    }
    else {
        perror("Could not access rc directory");
        exit(1);
    }
  }

  /* Set the memory version */
  pdebug_memversion = pilot->MemVersion;

  /* Set up the pipes */
  if (pipe(pilot->serial_pipefd) < 0) {
    perror("pipe");
    exit(1);
  }

  if (!strcmp(pilot->Debugging, "gdb")) {
    if (pipe(pilot->gdb_pipefd) < 0) {
      perror("pipe");
      exit(1);
    }
  } else {
    pilot->gdb_pipefd[0] = -1;	/* gdb_in */
    pilot->gdb_pipefd[1] = -1;	/* gdb_out */
  }

  /*
   * get a shared memory segment
   */
  pilot->shmid = shmget((key_t) 0, sizeof(shared_img), IPC_CREAT | 0777);
  if (pilot->shmid < 0) {
    perror("shmget");
    exit(1);
  } else {
    shared_img *shptr = attach_shm(pilot);
  
    /* Init the shm segment */
    shptr->CpuReq = cpuNone;
    shptr->run_updateisr = 0;
    shptr->allowromwrites = 0;

    shptr->pen = 0;
    shptr->pendown = 0;
    shptr->kbin = 0;
    shptr->kbout = 0;

    shptr->LcdReq = lcdNone;

    shptr->gdb_writefd = pilot->gdb_out;
    shptr->gdb.head = 0;
    shptr->gdb.tail = 0;

    shptr->serial_writefd = pilot->serial_out;
    shptr->serial.head = 0;
    shptr->serial.tail = 0;
    shptr->serial_baud = 0;
    shptr->serial_flags = 0;
  
    /*
     * Detach the segment before doing fork().  Some OS's have the
     * child inherit the attached segments.
     */
    shmdt((char *)shptr);
  }

  /*
   * Start display thread
   * Start cpu thread
   * Start debug thread
   * Start serial thread
   */
  PT_create(pilot, lcd_proc);
  PT_create(pilot, cpu_proc);
  PT_create(pilot, debug_proc);
  PT_create(pilot, gdb_proc);
  PT_create(pilot, serial_proc);

  PT_wait(pilot);	/* wait until all threads have exited */

  /* Delete the shared mem */
  shmctl(pilot->shmid, IPC_RMID, 0);

  exit(0);
}