/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. * * SPDX-License-Identifier: MIT **************************************************************************/ /**************************************************************************/ /**************************************************************************/ /** */ /** ThreadX Component */ /** */ /** Module */ /** */ /**************************************************************************/ /**************************************************************************/ #define TXM_MODULE #include "txm_module.h" #ifndef TXM_EVENT_FLAGS_PERFORMANCE_INFO_GET_CALL_NOT_USED /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _tx_event_flags_performance_info_get PORTABLE C */ /* 6.1.10 */ /* AUTHOR */ /* */ /* Scott Larson, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function retrieves performance information from the specified */ /* event flag group. */ /* */ /* INPUT */ /* */ /* group_ptr Pointer to event flag group */ /* sets Destination for the number of */ /* event flag sets on this group */ /* gets Destination for the number of */ /* event flag gets on this group */ /* suspensions Destination for the number of */ /* event flag suspensions on this */ /* group */ /* timeouts Destination for number of timeouts*/ /* on this event flag group */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* _txm_module_kernel_call_dispatcher */ /* */ /* CALLED BY */ /* */ /* Module application code */ /* */ /**************************************************************************/ UINT _tx_event_flags_performance_info_get(TX_EVENT_FLAGS_GROUP *group_ptr, ULONG *sets, ULONG *gets, ULONG *suspensions, ULONG *timeouts) { UINT return_value; ALIGN_TYPE extra_parameters[3]; extra_parameters[0] = (ALIGN_TYPE) gets; extra_parameters[1] = (ALIGN_TYPE) suspensions; extra_parameters[2] = (ALIGN_TYPE) timeouts; /* Call module manager dispatcher. */ return_value = (UINT) (_txm_module_kernel_call_dispatcher)(TXM_EVENT_FLAGS_PERFORMANCE_INFO_GET_CALL, (ALIGN_TYPE) group_ptr, (ALIGN_TYPE) sets, (ALIGN_TYPE) extra_parameters); /* Return value to the caller. */ return(return_value); } #endif