cctools
|
00001 /* 00002 Copyright (C) 2003-2004 Douglas Thain and the University of Wisconsin 00003 Copyright (C) 2005- The University of Notre Dame 00004 This software is distributed under the GNU General Public License. 00005 See the file COPYING for details. 00006 */ 00007 00008 #ifndef CATALOG_H 00009 #define CATALOG_H 00010 00011 #include <stdlib.h> 00012 00013 #define CATALOG_HOST_DEFAULT "chirp.cse.nd.edu" 00014 #define CATALOG_PORT_DEFAULT 9097 00015 00016 #define CATALOG_HOST (getenv("CATALOG_HOST") ? getenv("CATALOG_HOST") : CATALOG_HOST_DEFAULT ) 00017 #define CATALOG_PORT (getenv("CATALOG_PORT") ? atoi(getenv("CATALOG_PORT")) : CATALOG_PORT_DEFAULT ) 00018 00019 #define CATALOG_TYPE_WORK_QUEUE_MASTER "wq_master" 00020 00021 #endif