ON 20090704@8:51:39 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/index.htm#39998.8691898148 Isaac Marino Bavaresco[IMB-yahoo-J86] Code: /techref/member/IMB-yahoo-J86/mutex.htm




ON 20090704@8:52:18 PM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.htm#39998.8696527778
Isaac Marino Bavaresco[IMB-yahoo-J86] Code:
/techref/member/IMB-yahoo-J86/mutex.c.htm




ON 20090704@8:56:02 PM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.c.htm#39998.8722453704
Isaac Marino Bavaresco[IMB-yahoo-J86] Says

This is file "mutex.c".

It is my implementation of a simple mutex for FreeRTOS.


//==============================================================================
// Copyright (c) 2007-2009, Isaac Marino Bavaresco
// All rights reserved
// isaacbavaresco@yahoo.com.br
//==============================================================================
#include "FreeRTOS.h"
#include "list.h"
#include "task.h"
//==============================================================================
typedef struct
{
	xList			xTasksWaitingToTake;
	xTaskHandle		*pxOwner;
	size_t			uxCount;
} xMUTEX;
//==============================================================================
typedef xMUTEX *xMutexHandle;
//==============================================================================
xMutexHandle xMutexCreate( void )
{
xMUTEX *pxNewMutex;
	
	pxNewMutex = pvPortMalloc( sizeof( xMUTEX ));
	if( pxNewMutex != NULL )
	{
		pxNewMutex->pxOwner	= NULL;
		pxNewMutex->uxCount	= 0;
		vListInitialise( &( pxNewMutex->xTasksWaitingToTake ) );
	}

	return pxNewMutex;
}
//==============================================================================
signed portBASE_TYPE xMutexTake( xMutexHandle pxMutex, portTickType xTicksToWait )
	{
	portENTER_CRITICAL();
	if( pxMutex->pxOwner == xTaskGetCurrentTaskHandle() )
		{
		pxMutex->uxCount++;
		portEXIT_CRITICAL();
		return pdTRUE;
		}

	if(( xTicksToWait > ( portTickType ) 0 ) && ( pxMutex->pxOwner != NULL ))
		{
		vTaskPlaceOnEventList( &( pxMutex->xTasksWaitingToTake ), xTicksToWait );
		taskYIELD();

		if( pxMutex->pxOwner == xTaskGetCurrentTaskHandle() )
			{
			pxMutex->uxCount = 1;
			portEXIT_CRITICAL();
			return pdTRUE;
			}
		else
			{
			portEXIT_CRITICAL();
			return pdFALSE;
			}
		}

	if( pxMutex->pxOwner == NULL )
		{
		pxMutex->pxOwner = xTaskGetCurrentTaskHandle();
		pxMutex->uxCount = 1;
		portEXIT_CRITICAL();
		return pdTRUE;
		}

	portEXIT_CRITICAL();
	return pdFALSE;
	}
//==============================================================================
signed portBASE_TYPE xMutexGive( xMutexHandle pxMutex, portBASE_TYPE Release )
	{
	portENTER_CRITICAL();
	if( pxMutex->pxOwner != xTaskGetCurrentTaskHandle() )
		{
		portEXIT_CRITICAL();
		return pdFALSE;
		}

	if( Release )
		pxMutex->uxCount = 0;
	else
		{
		if( --pxMutex->uxCount != 0 )
			{
			portEXIT_CRITICAL();
			return pdFALSE;
			}
		}
	

	if( !listLIST_IS_EMPTY( &pxMutex->xTasksWaitingToTake ))
		{
		pxMutex->pxOwner = (xTaskHandle)listGET_OWNER_OF_HEAD_ENTRY( (&pxMutex->xTasksWaitingToTake) );
		pxMutex->uxCount = 1;

		if( xTaskRemoveFromEventList( &pxMutex->xTasksWaitingToTake ) == pdTRUE )
			taskYIELD();
		}
	else
		pxMutex->pxOwner = NULL;

	portEXIT_CRITICAL();
	return pdTRUE;
	}
//==============================================================================
signed portBASE_TYPE xDoIOwnTheMutex( xMutexHandle pxMutex )
	{
	portBASE_TYPE c;

	portENTER_CRITICAL();
	c = pxMutex->pxOwner == xTaskGetCurrentTaskHandle();
	portEXIT_CRITICAL();

	return c;
	}
//==============================================================================
ON 20090704@8:56:29 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.c.htm&version=1 ON 20090704@8:57:37 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.c.htm&version=2 ON 20090704@8:59:06 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.htm#39998.874375 Isaac Marino Bavaresco[IMB-yahoo-J86] Code: /techref/member/IMB-yahoo-J86/mutex.h.htm




ON 20090704@9:00:36 PM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.h.htm#39998.8754050926
Isaac Marino Bavaresco[IMB-yahoo-J86] Says

This is file mutex.h

//==============================================================================
// Copyright (c) 2007-2009, Isaac Marino Bavaresco
// All rights reserved
// isaacbavaresco@yahoo.com.br
//==============================================================================
#ifndef		__MUTEX_H__
#define		__MUTEX_H__
//==============================================================================
#include "FreeRTOS.h"
//==============================================================================
typedef void			*xMutexHandle;

xMutexHandle			xMutexCreate( void );
signed portBASE_TYPE	xMutexTake( xMutexHandle pxMutex, portTickType xTicksToWait );
signed portBASE_TYPE	xMutexGive( xMutexHandle pxMutex, portBASE_TYPE Release );
signed portBASE_TYPE	xDoIOwnTheMutex( xMutexHandle pxMutex );
//==============================================================================
#endif	//	__MUTEX_H__
//==============================================================================
ON 20090704@9:01:53 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.h.htm&version=1 ON 20090704@9:02:51 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.c.htm&version=3 ON 20090704@9:04:00 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.h.htm&version=2 ON 20090704@9:05:23 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/index.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\index.htm&version=12 ON 20090704@9:08:52 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.c.htm&version=4 ON 20090704@9:10:33 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.c.htm&version=5 ON 20090704@9:11:34 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.c.htm&version=6 ON 20090704@9:13:00 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.h.htm&version=3 ON 20090704@9:13:26 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.h.htm&version=4 ON 20090704@9:14:23 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.htm&version=2 ON 20090704@9:14:54 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.c.htm&version=7 ON 20090704@9:17:04 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.htm&version=3 ON 20090704@9:18:07 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.htm&version=4 ON 20090704@9:18:56 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.htm&version=5 ON 20090704@9:27:57 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/SimpleRTOS.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\SimpleRTOS.htm&version=12 ON 20090705@6:21:05 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/heap-mgmt.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\heap-mgmt.htm&version=18 ON 20090705@6:26:30 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/heap-mgmt.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\heap-mgmt.htm&version=19 ON 20090705@6:31:10 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/heap-mgmt.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\heap-mgmt.htm&version=20 ON 20090705@6:37:37 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/malloc.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\malloc.c.htm&version=8 ON 20090705@6:38:47 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/malloc.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\malloc.c.htm&version=9 ON 20090705@6:42:50 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/malloc.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\malloc.asm.htm&version=10 ON 20090705@6:44:14 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/malloc.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\malloc.asm.htm&version=11 ON 20090705@6:46:18 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/free.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\free.asm.htm&version=8 ON 20090705@6:47:59 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/free.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\free.asm.htm&version=9 ON 20090705@6:50:13 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/free.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\free.c.htm&version=7 ON 20090708@10:20:15 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.htm&version=6 ON 20090708@10:21:49 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.c.htm&version=8 ON 20090708@10:22:58 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.h.htm&version=5 ON 20090708@10:24:24 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/hi-techmemcpy.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\hi-techmemcpy.htm&version=4 ON 20090708@10:26:31 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/generic_pointers.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\generic_pointers.htm&version=6 ON 20090708@10:28:32 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/math_data_tmp_data.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\math_data_tmp_data.htm&version=3 ON 20090708@10:31:03 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090708@10:31:34 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090708@10:31:51 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090708@10:32:29 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.h.htm&version=7 ON 20090708@10:32:56 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.htm&version=9 ON 20090708@10:33:02 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090708@10:33:20 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.htm&version=11 ON 20090708@10:33:51 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090708@10:34:02 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.h.htm&version=9 ON 20090708@10:53:03 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/index.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\index.htm&version=13 ON 20090708@10:53:46 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/generic_pointers.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090708@10:54:01 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/generic_pointers.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\generic_pointers.htm&version=9 ON 20090708@10:55:31 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/genericpointer.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\genericpointer.h.htm&version=8 ON 20090708@3:04:24 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/ExpressionParser.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\ExpressionParser.htm&version=15 ON 20090708@3:05:13 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/ExpressionParser.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090708@3:10:33 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/port.c.diff.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\port.c.diff.htm&version=7 ON 20090708@3:12:49 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/sections.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\sections.asm.htm&version=3 ON 20090708@3:17:28 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/genericpointer.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\genericpointer.h.htm&version=9 ON 20090708@3:19:18 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/memcpy.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\memcpy.asm.htm&version=9 ON 20090708@3:21:01 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/SimpleRTOS.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\SimpleRTOS.htm&version=13 ON 20090708@3:29:05 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/hi-techmemcpy.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090708@3:34:10 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/hi-techmemcpy.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\hi-techmemcpy.htm&version=6 ON 20090708@3:42:06 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/hi-techmemcpy.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090708@3:42:53 PM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/hi-techmemcpy.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\hi-techmemcpy.htm&version=8 ON 20090709@9:36:26 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/index.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\index.htm&version=14 ON 20090709@9:37:05 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.htm&version=12 ON 20090709@9:37:30 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.c.htm&version=10 ON 20090709@9:38:15 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\mutex.h.htm&version=10 ON 20090709@9:39:02 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/ExpressionParser.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\ExpressionParser.htm&version=17 ON 20090709@9:39:55 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/math_data_tmp_data.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090709@9:40:05 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/math_data_tmp_data.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\math_data_tmp_data.htm&version=5 ON 20090709@9:40:31 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/port.c.diff.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090709@9:40:44 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/port.c.diff.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\port.c.diff.htm&version=9 ON 20090709@9:41:27 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/sections.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090709@9:41:47 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/sections.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\sections.asm.htm&version=5 ON 20090709@9:42:28 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/generic_pointers.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\generic_pointers.htm&version=10 ON 20090709@9:42:48 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/genericpointer.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090709@9:43:02 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/genericpointer.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\genericpointer.h.htm&version=11 ON 20090709@9:43:22 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/memcpy.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090709@9:43:47 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/memcpy.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\memcpy.asm.htm&version=11 ON 20090709@9:44:35 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/memcpy.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090709@9:44:58 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/memcpy.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\memcpy.asm.htm&version=13 ON 20090709@9:45:38 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/SimpleRTOS.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page. ON 20090709@9:45:59 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/SimpleRTOS.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\SimpleRTOS.htm&version=15 ON 20090709@9:46:29 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/SimpleRTOS.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\SimpleRTOS.h.htm&version=5 ON 20090709@9:47:12 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/SimpleRTOS.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\SimpleRTOS.c.htm&version=7 ON 20090709@9:48:23 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/TestMain.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\TestMain.c.htm&version=5 ON 20090709@9:49:55 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/TestTasks.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\TestTasks.c.htm&version=5 ON 20090709@9:51:53 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/heap-mgmt.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\heap-mgmt.htm&version=21 ON 20090709@9:52:39 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/malloc.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\malloc.c.htm&version=10 ON 20090709@9:53:14 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/malloc.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\malloc.asm.htm&version=12 ON 20090709@9:54:01 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/free.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\free.c.htm&version=8 ON 20090709@9:54:41 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/free.asm.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\free.asm.htm&version=10 ON 20090709@9:55:17 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/__freelist.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\__freelist.c.htm&version=7 ON 20090709@9:55:59 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/__heap.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\__heap.c.htm&version=7 ON 20090709@9:56:27 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/__reclaim_stack.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\__reclaim_stack.c.htm&version=7 ON 20090709@9:56:53 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/alloc.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\alloc.h.htm&version=6 ON 20090709@9:57:25 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/heap.h.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\heap.h.htm&version=7 ON 20090709@9:57:58 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/main.c.htm# Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference: http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\main.c.htm&version=7 ON 20090709@10:00:18 AM at page: On a web page you were interested in at: http://www.piclist.com/techref/member/IMB-yahoo-J86/heap-mgmt.htm#40003.416875 Isaac Marino Bavaresco[IMB-yahoo-J86] Code: /techref/member/IMB-yahoo-J86/heap_config.h




ON 20090709@10:00:50 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/heap_config.h.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\heap_config.h.htm&version=0



ON 20090709@10:01:15 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/heap-mgmt.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:01:27 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/heap-mgmt.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\heap-mgmt.htm&version=24



ON 20090709@10:02:19 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/hi-techmemcpy.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\hi-techmemcpy.htm&version=9



ON 20090709@10:02:32 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/hi-techmemcpy.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:02:46 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/index.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:02:54 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:03:02 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:03:17 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/mutex.h.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:03:43 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/ExpressionParser.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:03:55 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/math_data_tmp_data.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:04:03 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/port.c.diff.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:04:17 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/sections.asm.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:04:43 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/generic_pointers.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:04:51 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/genericpointer.h.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:05:30 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/SimpleRTOS.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:05:39 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/SimpleRTOS.h.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:06:00 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/SimpleRTOS.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:06:20 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/TestMain.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:06:39 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/TestTasks.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:07:04 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/heap-mgmt.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:07:17 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/malloc.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:08:02 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/malloc.asm.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:08:15 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/free.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:08:28 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/free.asm.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:08:43 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/__freelist.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:08:56 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/__heap.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:09:12 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/__reclaim_stack.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:09:24 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/alloc.h.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:09:37 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/heap.h.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:09:48 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/main.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090709@10:09:59 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/heap_config.h.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] I have agreed to maintain this page.



ON 20090711@11:38:38 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/malloc.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\malloc.c.htm&version=12



ON 20090711@11:39:56 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/malloc.asm.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\malloc.asm.htm&version=14



ON 20090711@11:41:00 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/malloc.asm.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\malloc.asm.htm&version=15



ON 20090711@11:44:41 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/free.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\free.c.htm&version=10



ON 20090711@11:45:32 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/free.asm.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\free.asm.htm&version=12



ON 20090711@11:47:17 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/__freelist.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\__freelist.c.htm&version=9



ON 20090711@11:49:00 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/__heap.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\__heap.c.htm&version=9



ON 20090711@11:50:38 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/__reclaim_stack.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\__reclaim_stack.c.htm&version=9



ON 20090711@11:53:05 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/alloc.h.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\alloc.h.htm&version=8



ON 20090711@11:56:50 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/heap.h.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\heap.h.htm&version=9



ON 20090711@11:58:25 AM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/main.c.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\main.c.htm&version=9



ON 20090711@12:00:03 PM at page:
On a web page you were interested in at:
http://www.piclist.com/techref/member/IMB-yahoo-J86/heap_config.h.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.piclist.com/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\heap_config.h.htm&version=2



ON 20090714@8:29:51 PM at page:
On a web page you were interested in at:
http://www.massmind.org/techref/member/IMB-yahoo-J86/index.htm#40008.8540277778
Isaac Marino Bavaresco[IMB-yahoo-J86] Code:
/techref/member/IMB-yahoo-J86/perlscript.htm




ON 20090714@8:31:18 PM at page:
On a web page you were interested in at:
http://www.massmind.org/techref/member/IMB-yahoo-J86/index.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.massmind.org/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\index.htm&version=17



ON 20090714@8:46:26 PM at page:
On a web page you were interested in at:
http://www.massmind.org/techref/member/IMB-yahoo-J86/perlscript.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.massmind.org/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\perlscript.htm&version=0



ON 20090714@8:47:35 PM at page:
On a web page you were interested in at:
http://www.massmind.org/techref/member/IMB-yahoo-J86/perlscript.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.massmind.org/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\perlscript.htm&version=1



ON 20090714@8:51:47 PM at page:
On a web page you were interested in at:
http://www.massmind.org/techref/member/IMB-yahoo-J86/perlscript.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.massmind.org/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\perlscript.htm&version=2



ON 20090714@9:05:05 PM at page:
On a web page you were interested in at:
http://www.massmind.org/techref/member/IMB-yahoo-J86/perlscript.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.massmind.org/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\perlscript.htm&version=3



ON 20090714@9:08:15 PM at page:
On a web page you were interested in at:
http://www.massmind.org/techref/member/IMB-yahoo-J86/perlscript.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.massmind.org/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\perlscript.htm&version=4



ON 20090714@9:16:26 PM at page:
On a web page you were interested in at:
http://www.massmind.org/techref/member/IMB-yahoo-J86/index.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.massmind.org/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\index.htm&version=18



ON 20090714@9:17:16 PM at page:
On a web page you were interested in at:
http://www.massmind.org/techref/member/IMB-yahoo-J86/index.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.massmind.org/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\index.htm&version=19



ON 20090714@9:17:55 PM at page:
On a web page you were interested in at:
http://www.massmind.org/techref/member/IMB-yahoo-J86/index.htm#
Isaac Marino Bavaresco[IMB-yahoo-J86] edited the page. Difference:
http://www.massmind.org/techref/diff.asp?url=H:\techref\member\IMB-yahoo-J86\index.htm&version=20