[llvm-commits] [llvm] r56244 - /llvm/trunk/lib/System/Unix/Memory.inc
Evan Cheng
evan.cheng at apple.com
Tue Sep 16 10:28:20 PDT 2008
Author: evancheng
Date: Tue Sep 16 12:28:18 2008
New Revision: 56244
URL: http://llvm.org/viewvc/llvm-project?rev=56244&view=rev
Log:
AllocateRWXMemory -> AllocateRWX.
Modified:
llvm/trunk/lib/System/Unix/Memory.inc
Modified: llvm/trunk/lib/System/Unix/Memory.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/System/Unix/Memory.inc?rev=56244&r1=56243&r2=56244&view=diff
==============================================================================
--- llvm/trunk/lib/System/Unix/Memory.inc (original)
+++ llvm/trunk/lib/System/Unix/Memory.inc Tue Sep 16 12:28:18 2008
@@ -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.
More information about the llvm-commits
mailing list