diff --git a/src/sview/Makefile.am b/src/sview/Makefile.am index 6f62104e1314c422d82e734c7dc31345d7179c8a..7d534584433894c665d7d4422c648c120369a7a7 100644 --- a/src/sview/Makefile.am +++ b/src/sview/Makefile.am @@ -13,7 +13,7 @@ sview_LDADD = \ $(top_builddir)/src/plugins/select/bluegene/block_allocator/libbluegene_block_allocator.la noinst_HEADERS = sview.h -sview_SOURCES = sview.c popups.c part_info.c job_info.c \ +sview_SOURCES = sview.c popups.c grid.c part_info.c job_info.c \ block_info.c node_info.c \ submit_info.c admin_info.c common.c @@ -26,7 +26,7 @@ sview_CFLAGS = $(GTK2_CFLAGS) else -EXTRA_sview_SOURCES = sview.h sview.c popups.c part_info.c job_info.c \ +EXTRA_sview_SOURCES = sview.h sview.c popups.c grid.c part_info.c job_info.c \ block_info.c node_info.c \ submit_info.c admin_info.c common.c diff --git a/src/sview/grid.c b/src/sview/grid.c new file mode 100644 index 0000000000000000000000000000000000000000..bc11b1fddcadce9d11b5f460ff2e933aedbdd8aa --- /dev/null +++ b/src/sview/grid.c @@ -0,0 +1,37 @@ +/****************************************************************************\ + * grid.c - put display grid info here + ***************************************************************************** + * Copyright (C) 2002-2006 The Regents of the University of California. + * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). + * Written by Danny Auble <da@llnl.gov>, et. al. + * UCRL-CODE-217948. + * + * This file is part of SLURM, a resource management program. + * For details, see <http://www.llnl.gov/linux/slurm/>. + * + * SLURM 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 2 of the License, or (at your option) + * any later version. + * + * In addition, as a special exception, the copyright holders give permission + * to link the code of portions of this program with the OpenSSL library under + * certain conditions as described in each individual source file, and + * distribute linked combinations including the two. You must obey the GNU + * General Public License in all respects for all of the code used other than + * OpenSSL. If you modify file(s) with this exception, you may extend this + * exception to your version of the file(s), but you are not obligated to do + * so. If you do not wish to do so, delete this exception statement from your + * version. If you delete this exception statement from all source files in + * the program, then also delete it here. + * + * SLURM 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 SLURM; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +\*****************************************************************************/ +#include "sview.h"