-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1158 from nasa/integration-candidate
osal Integration candidate: 2021-09-21
- Loading branch information
Showing
26 changed files
with
533 additions
and
91 deletions.
There are no files selected for viewing
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
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,65 @@ | ||
/* | ||
* NASA Docket No. GSC-18,370-1, and identified as "Operating System Abstraction Layer" | ||
* | ||
* Copyright (c) 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: bsp_default_resourcecfg.c | ||
* | ||
* Purpose: | ||
* Simple integer key/value table lookup to allow BSP-specific flags/options | ||
* to be set for various resource types. Meanings are all platform-defined. | ||
* | ||
*/ | ||
|
||
#include "osapi-idmap.h" | ||
#include "bsp-impl.h" | ||
|
||
/* --------------------------------------------------------- | ||
OS_BSP_SetResourceTypeConfig() | ||
Helper function to register BSP-specific options. | ||
--------------------------------------------------------- */ | ||
void OS_BSP_SetResourceTypeConfig(uint32 ResourceType, uint32 ConfigOptionValue) | ||
{ | ||
if (ResourceType < OS_OBJECT_TYPE_USER) | ||
{ | ||
OS_BSP_Global.ResoureConfig[ResourceType] = ConfigOptionValue; | ||
} | ||
} | ||
|
||
/* --------------------------------------------------------- | ||
OS_BSP_GetResourceTypeConfig() | ||
Helper function to register BSP-specific options. | ||
--------------------------------------------------------- */ | ||
uint32 OS_BSP_GetResourceTypeConfig(uint32 ResourceType) | ||
{ | ||
uint32 ConfigOptionValue; | ||
|
||
if (ResourceType < OS_OBJECT_TYPE_USER) | ||
{ | ||
ConfigOptionValue = OS_BSP_Global.ResoureConfig[ResourceType]; | ||
} | ||
else | ||
{ | ||
ConfigOptionValue = 0; | ||
} | ||
|
||
return ConfigOptionValue; | ||
} |
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
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
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,64 @@ | ||
/* | ||
* NASA Docket No. GSC-18,370-1, and identified as "Operating System Abstraction Layer" | ||
* | ||
* Copyright (c) 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 os-impl-sockets.c | ||
* \ingroup vxworks | ||
* \author joseph.p.hickey@nasa.gov | ||
* | ||
*/ | ||
|
||
/**************************************************************************************** | ||
INCLUDE FILES | ||
***************************************************************************************/ | ||
|
||
#include "os-vxworks.h" | ||
#include "os-shared-idmap.h" | ||
#include "os-impl-io.h" | ||
#include "os-impl-sockets.h" | ||
|
||
/**************************************************************************************** | ||
INITIALIZATION FUNCTION | ||
***************************************************************************************/ | ||
|
||
/*---------------------------------------------------------------- | ||
* | ||
* Function: OS_VxWorks_ModuleAPI_Impl_Init | ||
* | ||
* Purpose: Local helper routine, not part of OSAL API. | ||
* | ||
*-----------------------------------------------------------------*/ | ||
void OS_VxWorks_SetSocketFlags_Impl(const OS_object_token_t *token) | ||
{ | ||
OS_impl_file_internal_record_t *impl; | ||
int os_flags; | ||
|
||
impl = OS_OBJECT_TABLE_GET(OS_impl_filehandle_table, *token); | ||
|
||
/* Use ioctl/FIONBIO on this platform, rather than standard fcntl() */ | ||
os_flags = 1; | ||
if (ioctl(impl->fd, FIONBIO, &os_flags) == -1) | ||
{ | ||
/* No recourse if ioctl fails - just report the error and move on. */ | ||
OS_DEBUG("ioctl(FIONBIO): %s\n", strerror(errno)); | ||
} | ||
|
||
impl->selectable = true; | ||
} |
Oops, something went wrong.