/*  globals.c */

/* Vis5D version 4.3 */

/*
Vis5D system for visualizing five dimensional gridded data sets
Copyright (C) 1990 - 1997 Bill Hibbard, Johan Kellum, Brian Paul,
Dave Santek, and Andre Battaiola.

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/


#include <stdlib.h>
#include <string.h>
#include "globals.h"
#include "memory.h"
#include "sync.h"
#include "graphics.h"



/*** True Global variables ***/
int Quiet, Debug;       /* for debugging */
int NumThreads = 1;     /* Number of threads of execution (at least 1) */
                        /* first thread = main process */
                        /* second thread = first worker */
                        /* third thread = second worker, etc... */

LOCK GfxLock;           /* To synchronize reads/writes to graphics: */
LOCK TrajLock;


