1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

AllocateRWXMemory -> AllocateRWX.

llvm-svn: 56244
This commit is contained in:
Evan Cheng 2008-09-16 17:28:18 +00:00
parent d987c8990c
commit f80fc084ef

View File

@ -18,7 +18,7 @@
#include <sys/mman.h>
#endif
/// AllocateRWXMemory - Allocate a slab of memory with read/write/execute
/// AllocateRWX - Allocate a slab of memory with read/write/execute
/// permissions. This is typically used for JIT applications where we want
/// to emit code to the memory then jump to it. Getting this type of memory
/// is very OS specific.