~ubuntu-branches/ubuntu/vivid/slurm-llnl/vivid

« back to all changes in this revision

Viewing changes to src/sreport/resv_reports.h

  • Committer: Bazaar Package Importer
  • Author(s): Gennaro Oliva
  • Date: 2009-09-24 23:28:15 UTC
  • mfrom: (1.3.4 upstream)
  • mto: (16.1.1 maverick)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: james.westby@ubuntu.com-20090924232815-uu5ku2gqk7appy26
Tags: upstream-2.0.5
ImportĀ upstreamĀ versionĀ 2.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************\
 
2
 *  resv_reports.h - functions for generating reservation reports
 
3
 *                       from accounting infrastructure.
 
4
 *****************************************************************************
 
5
 *
 
6
 *  Copyright (C) 2009 Lawrence Livermore National Security.
 
7
 *  Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
 
8
 *  Written by Danny Auble <da@llnl.gov>
 
9
 *  CODE-OCEC-09-009. All rights reserved.
 
10
 *  
 
11
 *  This file is part of SLURM, a resource management program.
 
12
 *  For details, see <https://computing.llnl.gov/linux/slurm/>.
 
13
 *  Please also read the included file: DISCLAIMER.
 
14
 *  
 
15
 *  SLURM is free software; you can redistribute it and/or modify it under
 
16
 *  the terms of the GNU General Public License as published by the Free
 
17
 *  Software Foundation; either version 2 of the License, or (at your option)
 
18
 *  any later version.
 
19
 *
 
20
 *  In addition, as a special exception, the copyright holders give permission 
 
21
 *  to link the code of portions of this program with the OpenSSL library under
 
22
 *  certain conditions as described in each individual source file, and 
 
23
 *  distribute linked combinations including the two. You must obey the GNU 
 
24
 *  General Public License in all respects for all of the code used other than 
 
25
 *  OpenSSL. If you modify file(s) with this exception, you may extend this 
 
26
 *  exception to your version of the file(s), but you are not obligated to do 
 
27
 *  so. If you do not wish to do so, delete this exception statement from your
 
28
 *  version.  If you delete this exception statement from all source files in 
 
29
 *  the program, then also delete it here.
 
30
 *  
 
31
 *  SLURM is distributed in the hope that it will be useful, but WITHOUT ANY
 
32
 *  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
33
 *  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 
34
 *  details.
 
35
 *  
 
36
 *  You should have received a copy of the GNU General Public License along
 
37
 *  with SLURM; if not, write to the Free Software Foundation, Inc.,
 
38
 *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA.
 
39
\*****************************************************************************/
 
40
 
 
41
#ifndef __SREPORT_RESV_REPORTS_H
 
42
#define __SREPORT_RESV_REPORTS_H
 
43
 
 
44
#include "sreport.h"
 
45
 
 
46
//extern int cluster_account_by_user(int argc, char *argv[]);
 
47
//extern int cluster_user_by_account(int argc, char *argv[]);
 
48
//extern int cluster_user_by_wckey(int argc, char *argv[]);
 
49
extern int resv_utilization(int argc, char *argv[]);
 
50
//extern int cluster_wckey_by_user(int argc, char *argv[]);
 
51
 
 
52
#endif