Transition FileX to Eclipse Fundation

This commit is contained in:
TiejunZhou
2024-01-02 07:35:14 +00:00
commit 14884808b5
406 changed files with 143803 additions and 0 deletions
+92
View File
@@ -0,0 +1,92 @@
/**************************************************************************/
/* */
/* Copyright (c) Microsoft Corporation. All rights reserved. */
/* */
/* This software is licensed under the Microsoft Software License */
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
/* and in the root directory of this software. */
/* */
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/** */
/** FileX Component */
/** */
/** System */
/** */
/**************************************************************************/
/**************************************************************************/
#define FX_SOURCE_CODE
/* Include necessary system files. */
#include "fx_api.h"
#include "fx_system.h"
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _fxe_system_date_get PORTABLE C */
/* 6.1 */
/* AUTHOR */
/* */
/* William E. Lamie, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function checks for errors in the get system date call. */
/* */
/* INPUT */
/* */
/* year Pointer to year */
/* month Pointer to month */
/* day Pointer to day */
/* */
/* OUTPUT */
/* */
/* FX_PTR_ERROR Invalid destination pointer */
/* status Actual completion status */
/* */
/* CALLS */
/* */
/* _fx_system_date_get Actual get system date call */
/* */
/* CALLED BY */
/* */
/* Application Code */
/* */
/* RELEASE HISTORY */
/* */
/* DATE NAME DESCRIPTION */
/* */
/* 05-19-2020 William E. Lamie Initial Version 6.0 */
/* 09-30-2020 William E. Lamie Modified comment(s), */
/* resulting in version 6.1 */
/* */
/**************************************************************************/
UINT _fxe_system_date_get(UINT *year, UINT *month, UINT *day)
{
UINT status;
/* Check for an invalid pointer. */
if ((year == FX_NULL) || (month == FX_NULL) || (day == FX_NULL))
{
return(FX_PTR_ERROR);
}
/* Call actual service to get the system date. */
status = _fx_system_date_get(year, month, day);
/* Return status. */
return(status);
}