Posts Tagged ‘execve’

execve – execute program
USAGE
#include <unistd.h>

int execve(const char *filename, char *const argv[],
char *const envp[]);

DESCRIPTION
execve() executes the program [...]

Saturday, August 29th, 2009 at 00:48 | Comments Off
Categories: E

brk, sbrk – change data segment size
USAGE
#include <unistd.h>

int brk(void *end_data_segment);

void *sbrk(intptr_t increment);

DESCRIPTION
brk() sets the end of the data segment to [...]

Wednesday, August 26th, 2009 at 02:41 | Comments Off
Categories: B, S
TOP