Tuesday, March 22, 2011

இன்று செய்வதும், நாளை செய்யப் போவதும்

நான் இன்று செய்வதும், நாளை செய்யப் போவதும் என்னுடைய சிந்தனையாகவே இருக்க விரும்புகிறேன்

Labels:

Thursday, March 10, 2011

சைவ உணவு

நச்சுக்களை அகற்றுபவை:

நார்சத்து மிகுந்த சுரைக்காய், பூசணி, பசலைக்கீரை மற்றும் முட்டைகோஸ் ஆகியவை சைவ உணவ வகைகளில் மிக முக்கியமானவை.

பீட்ரூட், தக்காளி, பூசணி, பாகற்காய் போன்ற சைவ உணவுகள் ரத்தத்தை நன்கு சுத்திகரிப்பதோடு, தோலுக்கு மினு மினுப்பையும் கொடுக்கிறது. அத்துடன் கொய்யா, ஆப்பிள், பேரிக்காய் போன்ற பழங்களை உண்பதும் மேனிக்கு மினுமினுப்பை கூட்டும்.

Labels:

Monday, March 07, 2011

Illegal stack operations

Illegal Stack Operations

Illegal stack operations can lead to hard to detect crashes. This typically takes place when a program passes a pointer of the wrong type to a function. The example given below shows a case of a function expecting an integer pointer and the caller passes a pointer to a character.

http://www.eventhelix.com/realtimemantra/Basics/debugging_software_crashes.htm

char pointer/int pointer mixup
main()
{
char count;
// The routine expects a int pointer but a char pointer has been passed
// Older compilers and non ANSI C compilers do not catch this error
GetCount(&count);
// The called function was expecting an int (say 4 byte) variable. It was
// however passed a char pointer with one byte space. GetCount will still
// write four bytes, thus corrupting local variables or parameters on the
// stack
}

bool GetCount(int *pCount)
{
. . .
*pCount = returnValue;
return true;
}