|
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 | #include "hydra_utils.h" |
|---|
| 8 | #include "bsci.h" |
|---|
| 9 | |
|---|
| 10 | HYD_Status HYD_BSCI_launch_procs(char **global_args, const char *partition_id_str, |
|---|
| 11 | struct HYD_Partition *partition_list) |
|---|
| 12 | { |
|---|
| 13 | HYD_Status status = HYD_SUCCESS; |
|---|
| 14 | |
|---|
| 15 | HYDU_FUNC_ENTER(); |
|---|
| 16 | |
|---|
| 17 | status = HYD_BSCI_fns.launch_procs(global_args, partition_id_str, partition_list); |
|---|
| 18 | HYDU_ERR_POP(status, "bootstrap device returned error while launching processes\n"); |
|---|
| 19 | |
|---|
| 20 | fn_exit: |
|---|
| 21 | HYDU_FUNC_EXIT(); |
|---|
| 22 | return status; |
|---|
| 23 | |
|---|
| 24 | fn_fail: |
|---|
| 25 | goto fn_exit; |
|---|
| 26 | } |
|---|