/*************************************************************************** * 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_BYTE_POOL_INFO_GET_CALL_NOT_USED /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _txe_byte_pool_info_get PORTABLE C */ /* 6.1.10 */ /* AUTHOR */ /* */ /* Scott Larson, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function checks for errors in the byte pool information get */ /* service. */ /* */ /* INPUT */ /* */ /* pool_ptr Pointer to byte pool control block*/ /* name Destination for the pool name */ /* available_bytes Number of free bytes in byte pool */ /* fragments Number of fragments in byte pool */ /* first_suspended Destination for pointer of first */ /* thread suspended on byte pool */ /* suspended_count Destination for suspended count */ /* next_pool Destination for pointer to next */ /* byte pool on the created list */ /* */ /* OUTPUT */ /* */ /* TX_POOL_ERROR Invalid byte pool pointer */ /* status Completion status */ /* */ /* CALLS */ /* */ /* _txm_module_kernel_call_dispatcher */ /* */ /* CALLED BY */ /* */ /* Module application code */ /* */ /**************************************************************************/ UINT _txe_byte_pool_info_get(TX_BYTE_POOL *pool_ptr, CHAR **name, ULONG *available_bytes, ULONG *fragments, TX_THREAD **first_suspended, ULONG *suspended_count, TX_BYTE_POOL **next_pool) { UINT return_value; ALIGN_TYPE extra_parameters[5]; extra_parameters[0] = (ALIGN_TYPE) available_bytes; extra_parameters[1] = (ALIGN_TYPE) fragments; extra_parameters[2] = (ALIGN_TYPE) first_suspended; extra_parameters[3] = (ALIGN_TYPE) suspended_count; extra_parameters[4] = (ALIGN_TYPE) next_pool; /* Call module manager dispatcher. */ return_value = (UINT) (_txm_module_kernel_call_dispatcher)(TXM_BYTE_POOL_INFO_GET_CALL, (ALIGN_TYPE) pool_ptr, (ALIGN_TYPE) name, (ALIGN_TYPE) extra_parameters); /* Return value to the caller. */ return(return_value); } #endif