Skip to content

Commit

Permalink
Merge pull request #1226 from nasa/integration-candidate
Browse files Browse the repository at this point in the history
osal Integration candidate: Caelum-rc4+dev4
  • Loading branch information
astrogeco authored Feb 25, 2022
2 parents b095858 + 776de07 commit 92fbf08
Show file tree
Hide file tree
Showing 210 changed files with 309 additions and 229 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ The autogenerated OSAL user's guide can be viewed at <https://github.com/nasa/cF

## Version History

### Development Build: v6.0.0-rc4+dev42

- Resolve UT uninitialized variable warnings
- Add ut_assert to doxygen and fix warnings
- Protect if OS_FDGetInfo called on socket
- See <https://github.com/nasa/osal/pull/1226> and <https://github.com/nasa/cFS/pull/432>

### Development Build: v6.0.0-rc4+dev32

- Typesafe definition of osal_id_t
Expand Down
2 changes: 2 additions & 0 deletions docs/osal-detaildesign.doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
INPUT += @osal_MISSION_DIR@/src/os
INPUT += @osal_MISSION_DIR@/src/bsp

# Include ut_assert documentation in detail design document
INPUT += @osal_MISSION_DIR@/ut_assert
2 changes: 1 addition & 1 deletion src/bsp/shared/src/osapi-bsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file osapi-bsp.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* This file contains some of the OS APIs abstraction layer code
Expand Down
2 changes: 1 addition & 1 deletion src/os/inc/osapi-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
/*
* Development Build Macro Definitions
*/
#define OS_BUILD_NUMBER 32
#define OS_BUILD_NUMBER 42
#define OS_BUILD_BASELINE "v6.0.0-rc4"

/*
Expand Down
9 changes: 5 additions & 4 deletions src/os/portable/os-impl-bsd-select.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-bsd-select.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* Purpose: This file contains wrappers around the select() system call
Expand Down Expand Up @@ -126,9 +126,10 @@ static int32 OS_FdSet_ConvertIn_Impl(int *os_maxfd, fd_set *os_set, const OS_FdS
*
* This un-sets bits in OSAL_set that are set in the OS_set
*
* \param[in] OS_set The fd_set from select
* \param[in, out] OSAL_set The OS_FdSet updated by this helper
*-----------------------------------------------------------------*/
* \param[in] OS_set The fd_set from select
* \param[in,out] OSAL_set The OS_FdSet updated by this helper
*/
/*-----------------------------------------------------------------*/
static void OS_FdSet_ConvertOut_Impl(fd_set *OS_set, OS_FdSet *OSAL_set)
{
size_t offset;
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-bsd-sockets.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-bsd-sockets.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* Purpose: This file contains the network functionality for
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-console-bsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-console-bsp.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* Purpose:
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-no-loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-no-loader.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* This file contains a module loader implementation for systems
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-no-network.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-no-network.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* This file contains the network implementation for
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-no-shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-no-shell.c
* \file
*
* No shell implementation, returns OS_ERR_NOT_IMPLEMENTED for calls
*/
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-no-sockets.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-no-sockets.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* Purpose: All functions return OS_ERR_NOT_IMPLEMENTED.
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-no-symtab.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-no-symtab.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* This file contains a symbol table implementation for systems
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-posix-dirs.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-posix-dirs.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* This file Contains all of the api calls for manipulating files
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-posix-dl-loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-posix-dl-loader.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* This file contains a module loader implementation for systems
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-posix-dl-symtab.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-posix-dl-symtab.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* This file contains a module loader implementation for systems
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-posix-files.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-posix-files.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* This file Contains all of the api calls for manipulating files
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-posix-gettime.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-posix-gettime.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* This file contains implementation for OS_GetLocalTime() and OS_SetLocalTime()
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-posix-io.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-posix-io.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* This file contains generic calls for manipulating filehandles
Expand Down
2 changes: 1 addition & 1 deletion src/os/portable/os-impl-posix-network.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-posix-network.c
* \file
* \author joseph.p.hickey@nasa.gov
*
* This file contains the network functionality for
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-binsem.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-binsem.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-common.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-common.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-console.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-console.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-countsem.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-countsem.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-dirs.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-dirs.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-errors.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-errors.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-files.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-files.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-filesys.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-filesys.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-heap.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-idmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-idmap.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-loader.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-mutex.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-mutex.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-no-module.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-no-module.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-queues.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-queues.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-shell.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-tasks.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-tasks.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/posix/src/os-impl-timebase.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-timebase.c
* \file
* \ingroup posix
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/rtems/src/os-impl-binsem.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-binsem.c
* \file
* \ingroup rtems
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/rtems/src/os-impl-common.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-common.c
* \file
* \ingroup rtems
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/rtems/src/os-impl-console.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-console.c
* \file
* \ingroup rtems
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/rtems/src/os-impl-countsem.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-countsem.c
* \file
* \ingroup rtems
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/rtems/src/os-impl-dirs.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-dirs.c
* \file
* \ingroup rtems
* \author joseph.p.hickey@nasa.gov
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/rtems/src/os-impl-errors.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/**
* \file os-impl-errors.c
* \file
* \ingroup rtems
* \author joseph.p.hickey@nasa.gov
*
Expand Down
Loading

0 comments on commit 92fbf08

Please sign in to comment.