|
Revision 4569, 399 bytes
(checked in by balaji, 6 months ago)
|
|
Remove the bootstrap server's dependency on the HYD_Handle
structure. Now all information it needs is passed down from the upper
layers. This should fix ticket #600 and a part of ticket #445.
|
| 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 RSH_H_INCLUDED |
|---|
| 8 | #define RSH_H_INCLUDED |
|---|
| 9 | |
|---|
| 10 | #include "hydra_base.h" |
|---|
| 11 | |
|---|
| 12 | HYD_Status HYD_BSCD_rsh_launch_procs(char **global_args, char *partition_id_str, |
|---|
| 13 | struct HYD_Partition *partition_list); |
|---|
| 14 | |
|---|
| 15 | #endif /* RSH_H_INCLUDED */ |
|---|