[llvm-commits] CVS: llvm/include/llvm/Support/SystemUtils.h
Reid Spencer
reid at x10sys.com
Mon Dec 13 12:14:41 PST 2004
Changes in directory llvm/include/llvm/Support:
SystemUtils.h updated: 1.13 -> 1.14
---
Log message:
For PR351: http://llvm.cs.uiuc.edu/PR351 :
Remove AllocateRWXMemory as it is not used any more in LLVM. The function
has been replaced with sys::Memory::AllocateRWX several months ago.
---
Diffs of the changes: (+0 -7)
Index: llvm/include/llvm/Support/SystemUtils.h
diff -u llvm/include/llvm/Support/SystemUtils.h:1.13 llvm/include/llvm/Support/SystemUtils.h:1.14
--- llvm/include/llvm/Support/SystemUtils.h:1.13 Wed Sep 1 17:55:35 2004
+++ llvm/include/llvm/Support/SystemUtils.h Mon Dec 13 14:14:30 2004
@@ -53,13 +53,6 @@
///
int ExecWait (const char * const argv[], const char * const envp[]);
-/// AllocateRWXMemory - 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.
-///
-void *AllocateRWXMemory(unsigned NumBytes);
-
} // End llvm namespace
#endif
More information about the llvm-commits
mailing list