/***********************************************************************/ /* Course: Computer Science 402a */ /* Assignment: Assignment 1 */ /* Instructor: Mark Giesbrecht */ /* Submitted by: Dan Fraser */ /* Student Number: 001219229 */ /* Due Date: Wednesday, February 16 */ /***********************************************************************/ /* globals.h - interface describing global variables */ /***********************************************************************/ #ifndef _GLOBALS_H_ #define _GLOBALS_H_ #include #include #include "Busy.h" extern int ns_port; extern string my_name; extern int my_uid; extern pthread_mutex_t busy_mutex; extern Busy busy; #define NAMESERVER "localhost" #endif