__fpending programming

The __fpending() function returns the number of bytes in the output buffer. For wide-oriented streams the unit is wide characters. This function is undefined on buffers in reading mode, or opened read-only.

On POSIX-compliant platforms, SIGSEGV is the signal sent to a process when it makes an invalid memory reference, or segmentation fault.

#include<stdio.h>
#include<stdio_ext.h>
main()
{
size_t love;
FILE *ptr;
ptr=fopen("home/jeffrin/tester", "w");
love= __fpending(ptr);
 printf("\n %p \n",love);
}

(gdb) r
Starting program: /home/jeffrin/a.out

Program received signal SIGSEGV, Segmentation fault.
__fpending (fp=0x0) at __fpending.c:24
24 if (fp->_mode > 0)

#include<stdio.h>
#include<stdio_ext.h>
main()
{
size_t love;
FILE *ptr;
ptr=fopen("/home/jeffrin/tester", "w");
love= __fpending(ptr);
printf("\n %d \n",love);
}

http://www.packetstormsecurity.org/groups/synnergy/dtors.txt

SMBus controller

SMBus is the System Management Bus defined by Intel in 1995. It is used in personal computers and servers for low-speed system management communications. An SMBus controller is integrated into most IntelĀ® chipsets.

The SMBus Controller (or system bus controller) is part of the Intel chipset. It monitors your system board’s temperature and voltage. Programs that read your hardware sensors need the controller.

http://en.wikipedia.org/wiki/Controller_(computing)

define bus, topology

Bus
An electronic pathway. In networks, a configuration (topology) with a single linear cable, terminated at each end, to which computers and devices are connected. There are no loops or branches in the cable. Also called a daisy chain.

Topology.
The arrangement in which the nodes of a LAN are connected to each other.

Cuckoo.
[audio:http://www.freeinfosociety.com/media/sounds/292.mp3]

APC alternate PHP cache ( apc_add )

The alternate PHP cache is free and open opcode cache for PHP.
http://en.wikipedia.org/wiki/Opcode

$variable= 'Iam ok';
apc_add('foo',$variable);
var_dump(apc_fetch('foo'));

the above code is not working as desired.
the output we get is “bool(false)”

http://www.techterms.com/definition/parse
-r code Run PHP code without using script tags ‘

Armstrong, Neil: The Eagle Has Landed
[audio:http://www.freeinfosociety.com/media/sounds/18.mp3]