|
Revision 4887, 0.6 KB
(checked in by balaji, 5 months ago)
|
|
Warning stomp.
|
| Line | |
|---|
| 1 | /* -*- Mode: C; c-basic-offset:4 ; -*- */ |
|---|
| 2 | /* |
|---|
| 3 | * (C) 2008 by Argonne National Laboratory. |
|---|
| 4 | * See COPYRIGHT in top-level directory. |
|---|
| 5 | */ |
|---|
| 6 | |
|---|
| 7 | #ifndef SLURM_H_INCLUDED |
|---|
| 8 | #define SLURM_H_INCLUDED |
|---|
| 9 | |
|---|
| 10 | #include "hydra_base.h" |
|---|
| 11 | |
|---|
| 12 | HYD_Status HYD_BSCD_slurm_launch_procs(char **global_args, const char *partition_id_str, |
|---|
| 13 | struct HYD_Partition *partition_list); |
|---|
| 14 | HYD_Status HYD_BSCD_slurm_query_partition_id(int *partition_id); |
|---|
| 15 | HYD_Status HYD_BSCD_slurm_query_node_list(int num_nodes, |
|---|
| 16 | struct HYD_Partition **partition_list); |
|---|
| 17 | |
|---|
| 18 | #endif /* SLURM_H_INCLUDED */ |
|---|