Skip to content

Commit

Permalink
Touch-ups - empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
thnkslprpt committed Oct 10, 2022
1 parent a4e4ec8 commit f407ddf
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 15 deletions.
3 changes: 0 additions & 3 deletions src/os/shared/inc/os-shared-common.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ int32 OS_API_Impl_Init(osal_objtype_t idtype);

/*----------------------------------------------------------------
Purpose: Block the "idle" thread until woken up
The "IdleLoop_Impl" is called by the main thread once
Expand All @@ -117,7 +116,6 @@ void OS_IdleLoop_Impl(void);

/*----------------------------------------------------------------
Purpose: Wake up the idle task
The "ApplicationShutdown_Impl" should wake up whatever
Expand All @@ -133,7 +131,6 @@ void OS_ApplicationShutdown_Impl(void);

/*----------------------------------------------------------------
Purpose: Utility function to safely find the length of a string
within a fixed-size array buffer.
Expand Down
1 change: 0 additions & 1 deletion src/os/shared/inc/os-shared-file.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ int32 OS_FileRename_Impl(const char *old_path, const char *new_path);

/*----------------------------------------------------------------
Purpose: Change permission on an existing file
Returns: OS_SUCCESS on success, or relevant error code
Expand Down
2 changes: 0 additions & 2 deletions src/os/shared/inc/os-shared-idmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ void OS_Unlock_Global_Impl(osal_objtype_t idtype);

/*----------------------------------------------------------------
Purpose: Waits for a change in the global table identified by "idtype"
NOTE: The table must be already "owned" (via OS_Lock_Global) by the calling
Expand All @@ -220,7 +219,6 @@ void OS_WaitForStateChange(OS_object_token_t *token, uint32 attempts);

/*----------------------------------------------------------------
Purpose: Block the caller until some sort of change event
has occurred for the given object type, such as a record changing
state i.e. the acquisition or release of a lock/refcount from
Expand Down
1 change: 0 additions & 1 deletion src/os/shared/inc/os-shared-module.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ int32 OS_ModuleLoad_Impl(const OS_object_token_t *token, const char *translated_

/*----------------------------------------------------------------
Purpose: Unloads the module file from the running operating system
Returns: OS_SUCCESS on success, or relevant error code
Expand Down
1 change: 0 additions & 1 deletion src/os/shared/inc/os-shared-network.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ int32 OS_NetworkAPI_Init(void);

/*----------------------------------------------------------------
Purpose: Gets the name of the current host
Returns: OS_SUCCESS on success, or relevant error code
Expand Down
1 change: 0 additions & 1 deletion src/os/shared/inc/os-shared-select.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ int32 OS_SelectSingle_Impl(const OS_object_token_t *token, uint32 *SelectFlags,

/*----------------------------------------------------------------
Purpose: Waits for activity on multiple file descriptors
This wrapper is usable by the File or Socket API
Will wait for any file descriptor in "ReadSet" to be readable OR
Expand Down
2 changes: 0 additions & 2 deletions src/os/shared/inc/os-shared-sockets.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ int32 OS_SocketSendTo_Impl(const OS_object_token_t *token, const void *buffer, s

/*----------------------------------------------------------------
Purpose: Get OS-specific information about a socket
Returns: OS_SUCCESS on success, or relevant error code
Expand All @@ -121,7 +120,6 @@ int32 OS_SocketGetInfo_Impl(const OS_object_token_t *token, OS_socket_prop_t *so

/*----------------------------------------------------------------
Purpose: Initializes an OSAL SockAddr structure to the given address domain
Returns: OS_SUCCESS on success, or relevant error code
Expand Down
4 changes: 0 additions & 4 deletions src/os/shared/inc/os-shared-task.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ int32 OS_TaskMatch_Impl(const OS_object_token_t *token);

/*----------------------------------------------------------------
Purpose: Prepare/Allocate OS resources for a new task and start
running it, based on configuration in the global object
Expand Down Expand Up @@ -149,7 +148,6 @@ int32 OS_TaskGetInfo_Impl(const OS_object_token_t *token, OS_task_prop_t *task_p

/*----------------------------------------------------------------
Purpose: Perform registration actions after new task creation
NOTE: This is invoked via the OS_TaskEntryPoint() immediately
Expand All @@ -161,7 +159,6 @@ int32 OS_TaskRegister_Impl(osal_id_t global_task_id);

/*----------------------------------------------------------------
Purpose: A helper "match" function to find an OSAL task ID based on system ID
Compatible with the "OS_ObjectIdFindBySearch" routine
Expand All @@ -170,7 +167,6 @@ bool OS_TaskIdMatchSystemData_Impl(void *ref, const OS_object_token_t *token, co

/*----------------------------------------------------------------
Purpose: Checks that the supplied sysdata pointer and sysdata_size are
compatible/reasonable for the underlying OS.
Expand Down

0 comments on commit f407ddf

Please sign in to comment.