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

« back to all changes in this revision

Viewing changes to src/common/slurm_resource_info.h

  • Committer: Bazaar Package Importer
  • Author(s): Gennaro Oliva
  • Date: 2009-09-24 23:28:15 UTC
  • mfrom: (1.1.11 upstream) (3.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090924232815-enh65jn32q1ebg07
Tags: 2.0.5-1
* New upstream release 
* Changed dependecy from lib-mysqlclient15 to lib-mysqlclient 
* Added Default-Start for runlevel 2 and 4 and $remote_fs requirement in
  init.d scripts (Closes: #541252)
* Postinst checks for wrong runlevels 2 and 4 links
* Upgraded to standard version 3.8.3
* Add lintian overrides for missing slurm-llnl-configurator.html in doc
  base registration
* modified postrm scripts to ignore pkill return value in order to avoid
  postrm failure when no slurm process is running
* Checking for slurmctld.pid before cancelling running and pending
  jobs during package removal 

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 *****************************************************************************
5
5
 *  Copyright (C) 2006 Hewlett-Packard Development Company, L.P.
6
6
 *  Written by Susanne M. Balle, <susanne.balle@hp.com>
7
 
 *  LLNL-CODE-402394.
 
7
 *  CODE-OCEC-09-009. All rights reserved.
8
8
 *  
9
9
 *  This file is part of SLURM, a resource management program.
10
 
 *  For details, see <http://www.llnl.gov/linux/slurm/>.
 
10
 *  For details, see <https://computing.llnl.gov/linux/slurm/>.
 
11
 *  Please also read the included file: DISCLAIMER.
11
12
 *  
12
13
 *  SLURM is free software; you can redistribute it and/or modify it under
13
14
 *  the terms of the GNU General Public License as published by the Free
66
67
                          const select_type_plugin_info_t cr_type,
67
68
                          uint32_t job_id, char *name);
68
69
 
 
70
void slurm_print_cpu_bind_help(void);
 
71
void slurm_print_mem_bind_help(void);
 
72
 
69
73
void slurm_sprint_cpu_bind_type(char *str, cpu_bind_type_t cpu_bind_type);
70
74
void slurm_sprint_mem_bind_type(char *str, mem_bind_type_t mem_bind_type);
71
75
 
 
76
int slurm_verify_cpu_bind(const char *arg, char **cpu_bind, 
 
77
                          cpu_bind_type_t *flags);
 
78
int slurm_verify_mem_bind(const char *arg, char **mem_bind, 
 
79
                          mem_bind_type_t *flags);
 
80
 
72
81
#endif /* !_RES_INFO_H */