forked from nasa/cFE
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix nasa#583 - strawman for CCB consideration, UT not working!
- Loading branch information
1 parent
f1be048
commit 17de99b
Showing
12 changed files
with
179 additions
and
346 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
** GSC-18128-1, "Core Flight Executive Version 6.7" | ||
** | ||
** Copyright (c) 2006-2019 United States Government as represented by | ||
** the Administrator of the National Aeronautics and Space Administration. | ||
** All Rights Reserved. | ||
** | ||
** Licensed under the Apache License, Version 2.0 (the "License"); | ||
** you may not use this file except in compliance with the License. | ||
** You may obtain a copy of the License at | ||
** | ||
** http://www.apache.org/licenses/LICENSE-2.0 | ||
** | ||
** Unless required by applicable law or agreed to in writing, software | ||
** distributed under the License is distributed on an "AS IS" BASIS, | ||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
** See the License for the specific language governing permissions and | ||
** limitations under the License. | ||
*/ | ||
|
||
/* | ||
** File: | ||
** cfe_es_start.c | ||
** | ||
** Purpose: | ||
** Provides the load-time configuration of which shared libraries and applications should | ||
** be loaded into the cFS instance. | ||
** | ||
** References: | ||
** | ||
** Notes: | ||
** | ||
** Modification History: | ||
** | ||
*/ | ||
|
||
/* | ||
** Required header files. | ||
*/ | ||
|
||
#include "cfe_tbl_filedef.h" /* Required for the CFE_TBL_FILEDEF macro */ | ||
#include "cfe_es_table.h" | ||
|
||
CFE_ES_AppLibTbl_t CFE_ES_AppLibTbl = { | ||
/** \brief number of entries in the library array **/ | ||
1, | ||
/** Entries **/ | ||
{ | ||
/** { <shared library file path>, <entry point>, <name> } **/ | ||
{"/cf/sample_lib.so", "SAMPLE_LibInit", "SAMPLE_LIB"}, | ||
{} | ||
}, | ||
/** \brief number of entries in the application array **/ | ||
4, | ||
/** Entries **/ | ||
{ | ||
/** { <shared library file path>, <entry point>, <name>, <stack size>, <priority>, | ||
<1 == reset processor on err> } **/ | ||
{"/cf/sample_app.so", "SAMPLE_AppMain", "SAMPLE_APP", 16384, 50, 0}, | ||
{"/cf/ci_lab.so", "CI_Lab_AppMain", "CI_LAB_APP", 16384, 60, 0}, | ||
{"/cf/to_lab.so", "TO_Lab_AppMain", "TO_LAB_APP", 16384, 70, 0}, | ||
{"/cf/sch_lab.so", "SCH_Lab_AppMain", "SCH_LAB_APP", 16384, 80, 0}, | ||
{} | ||
} | ||
}; | ||
|
||
CFE_TBL_FILEDEF(CFE_ES_AppLibTbl, CFE_ES.CFE_ES_AppLibTbl, ES App and Lib Table, cfe_es_start.tbl) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.