cctools
work_queue_catalog.h
1 /*
2 Copyright (C) 2012- The University of Notre Dame
3 This software is distributed under the GNU General Public License.
4 See the file COPYING for details.
5 */
6 
7 #ifndef WORK_QUEUE_CATALOG_H
8 #define WORK_QUEUE_CATALOG_H
9 
10 #include "list.h"
11 
12 int work_queue_catalog_parse( char *server_string, char **host, int *port );
13 struct list * work_queue_catalog_query( const char *catalog_host, int catalog_port, const char *project_regex );
14 struct list * work_queue_catalog_query_cached( const char *catalog_host, int catalog_port, const char *project_regex );
15 
16 #endif
Robust, reentrant linked list structure.