Skip to content

Commit

Permalink
Merge pull request #1250 from acudmore/fix-1248-rtems-os-impl-no-select
Browse files Browse the repository at this point in the history
Fix #1248, add os-impl-no-select.c for RTEMS
  • Loading branch information
astrogeco committed May 2, 2022
2 parents a0ec380 + 3c6ae5a commit 07a134f
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 1 deletion.
78 changes: 78 additions & 0 deletions src/os/portable/os-impl-no-select.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
/************************************************************************
* NASA Docket No. GSC-18,719-1, and identified as “core Flight System: Bootes”
*
* Copyright (c) 2020 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-no-select.c
* \author [email protected]
*
* Purpose: All functions return OS_ERR_NOT_IMPLEMENTED.
* This is used when network functionality is disabled by config.
*/

/****************************************************************************************
INCLUDE FILES
***************************************************************************************/

#include <osapi.h>
#include "os-shared-select.h"

/****************************************************************************************
DEFINES
***************************************************************************************/

/***************************************************************************************
FUNCTION PROTOTYPES
**************************************************************************************/

/****************************************************************************************
GLOBAL DATA
***************************************************************************************/

/****************************************************************************************
LOCAL FUNCTIONS
***************************************************************************************/

/****************************************************************************************
SELECT API
***************************************************************************************/

/*----------------------------------------------------------------
*
* Function: OS_SelectSingle_Impl
*
* Purpose: Implemented per internal OSAL API
* See prototype for argument/return detail
*
*-----------------------------------------------------------------*/
int32 OS_SelectSingle_Impl(const OS_object_token_t *token, uint32 *SelectFlags, int32 msecs)
{
return OS_ERR_NOT_IMPLEMENTED;
} /* end OS_SelectSingle_Impl */

/*----------------------------------------------------------------
*
* Function: OS_SelectMultiple_Impl
*
* Purpose: Implemented per internal OSAL API
* See prototype for argument/return detail
*
*-----------------------------------------------------------------*/
int32 OS_SelectMultiple_Impl(OS_FdSet *ReadSet, OS_FdSet *WriteSet, int32 msecs)
{
return OS_ERR_NOT_IMPLEMENTED;
} /* end OS_SelectMultiple_Impl */
3 changes: 2 additions & 1 deletion src/os/rtems/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ set(RTEMS_BASE_SRCLIST
set(RTEMS_IMPL_SRCLIST
../portable/os-impl-posix-gettime.c
../portable/os-impl-console-bsp.c
../portable/os-impl-bsd-select.c
../portable/os-impl-posix-io.c
../portable/os-impl-posix-files.c
../portable/os-impl-posix-dirs.c
Expand Down Expand Up @@ -61,11 +60,13 @@ if (OSAL_CONFIG_INCLUDE_NETWORK)
list(APPEND RTEMS_IMPL_SRCLIST
src/os-impl-network.c
../portable/os-impl-bsd-sockets.c
../portable/os-impl-bsd-select.c
)
else()
list(APPEND RTEMS_IMPL_SRCLIST
../portable/os-impl-no-network.c
../portable/os-impl-no-sockets.c
../portable/os-impl-no-select.c
)
endif ()

Expand Down

0 comments on commit 07a134f

Please sign in to comment.