forked from Imagelibrary/rtems
Use allocator mutex for objects allocate/free. This prevents that the thread dispatch latency depends on the workspace/heap fragmentation.
81 lines
2.1 KiB
C
81 lines
2.1 KiB
C
/**
|
|
* @file
|
|
*
|
|
* @brief Shrink an Object Class Information Record
|
|
* @ingroup ScoreCPU
|
|
*/
|
|
|
|
/*
|
|
* COPYRIGHT (c) 1989-1999.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <rtems/score/objectimpl.h>
|
|
#include <rtems/score/assert.h>
|
|
#include <rtems/score/chainimpl.h>
|
|
#include <rtems/score/wkspace.h>
|
|
|
|
void _Objects_Shrink_information(
|
|
Objects_Information *information
|
|
)
|
|
{
|
|
uint32_t block_count;
|
|
uint32_t block;
|
|
uint32_t index_base;
|
|
|
|
_Assert( _Debug_Is_owner_of_allocator() );
|
|
|
|
/*
|
|
* Search the list to find block or chunk with all objects inactive.
|
|
*/
|
|
|
|
index_base = _Objects_Get_index( information->minimum_id );
|
|
block_count = (information->maximum - index_base) /
|
|
information->allocation_size;
|
|
|
|
for ( block = 0; block < block_count; block++ ) {
|
|
if ( information->inactive_per_block[ block ] ==
|
|
information->allocation_size ) {
|
|
Chain_Node *node = _Chain_First( &information->Inactive );
|
|
const Chain_Node *tail = _Chain_Immutable_tail( &information->Inactive );
|
|
uint32_t index_end = index_base + information->allocation_size;
|
|
|
|
while ( node != tail ) {
|
|
Objects_Control *object = (Objects_Control *) node;
|
|
uint32_t index = _Objects_Get_index( object->id );
|
|
|
|
/*
|
|
* Get the next node before the node is extracted
|
|
*/
|
|
node = _Chain_Next( node );
|
|
|
|
if ( index >= index_base && index < index_end ) {
|
|
_Chain_Extract_unprotected( &object->Node );
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Free the memory and reset the structures in the object' information
|
|
*/
|
|
|
|
_Workspace_Free( information->object_blocks[ block ] );
|
|
information->object_blocks[ block ] = NULL;
|
|
information->inactive_per_block[ block ] = 0;
|
|
|
|
information->inactive -= information->allocation_size;
|
|
|
|
return;
|
|
}
|
|
|
|
index_base += information->allocation_size;
|
|
}
|
|
}
|