System : Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686
Software : Apache. PHP/5.3.6-13ubuntu3.10
ID : uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
Safe Mode : OFF
Open_Basedir : OFF
Freespace : 24.53 GB of 70.42 GB (34.83%)
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
/
usr/
share/
doc/
libapr1-dev/
html/
- drwxr-xr-x
Viewing file: group__apr__mmap.html (18.66 KB) -rw-r--r-- Select action/file-type:
(
+ ) |
(
+ ) |
(
+ ) |
Code (
+ ) |
Session (
+ ) |
(
+ ) |
SDB (
+ ) |
(
+ ) |
(
+ ) |
(
+ ) |
(
+ ) |
(
+ ) |
Apache Portable Runtime: MMAP (Memory Map) Routines
Define Documentation
#define APR_MMAP_CANDIDATE
(
filelength )
((filelength >= APR_MMAP_THRESHOLD) && (filelength < APR_MMAP_LIMIT))
#define APR_MMAP_LIMIT (4*1024*1024)
Maximum size of MMap region
#define APR_MMAP_THRESHOLD 1
Files have to be at least this big before they're mmap()d. This is to deal with systems where the expense of doing an mmap() and an munmap() outweighs the benefit for small files. It shouldn't be set lower than 1.
Typedef Documentation
Function Documentation
Create a new mmap'ed file out of an existing APR file.
Parameters:
newmmap The newly created mmap'ed file.
file The file turn into an mmap.
offset The offset into the file to start the data pointer at.
size The size of the file
flag bit-wise or of:
APR_MMAP_READ MMap opened for reading
APR_MMAP_WRITE MMap opened for writing
cntxt The pool to use when creating the mmap.
Remove a mmap'ed.
Parameters:
Duplicate the specified MMAP.
Parameters:
new_mmap The structure to duplicate into.
old_mmap The mmap to duplicate.
p The pool to use for new_mmap.
Move the pointer into the mmap'ed file to the specified offset.
Parameters:
addr The pointer to the offset specified.
mm The mmap'ed file.
offset The offset to move to.