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

« back to all changes in this revision

Viewing changes to src/plugins/select/linear/select_linear.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:
1
1
/*****************************************************************************\
2
2
 *  select_linear.h 
3
3
 *****************************************************************************
4
 
 *  Copyright (C) 2006 Hewlett-Packard Development Company, L.P.
 
4
 *  Copyright (C) 2006-2007 Hewlett-Packard Development Company, L.P.
5
5
 *  Written by Susanne M. Balle, <susanne.balle@hp.com>
6
 
 *  LLNL-CODE-402394.
 
6
 *  CODE-OCEC-09-009. All rights reserved.
7
7
 *  
8
8
 *  This file is part of SLURM, a resource management program.
9
 
 *  For details, see <http://www.llnl.gov/linux/slurm/>.
 
9
 *  For details, see <https://computing.llnl.gov/linux/slurm/>.
 
10
 *  Please also read the included file: DISCLAIMER.
10
11
 *  
11
12
 *  SLURM is free software; you can redistribute it and/or modify it under
12
13
 *  the terms of the GNU General Public License as published by the Free
69
70
                                         * otherwise value is zero */
70
71
};
71
72
 
72
 
/*
73
 
 * step_cr_record keeps track of the steps which have been allocated memory
74
 
 * independently of the job (ie. the job itself has no reserved memory
75
 
 */
76
 
struct step_cr_record {
77
 
        uint32_t job_id;
78
 
        uint32_t step_id;
79
 
};
80
 
 
81
73
#endif /* !_SELECT_LINEAR_H */