aboutsummaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-29 00:31:14 +0000
committerlloyd <[email protected]>2008-09-29 00:31:14 +0000
commit7f60f26ba5f6193d9fd153ac4d48065a53990afc (patch)
tree304417faea171fac0c869b333e9eca16b93c3c81 /src/core
parent23f973f19da56c795756f9b80e273a2112e5e794 (diff)
Move mlock to utils, as decled in util.h
Diffstat (limited to 'src/core')
-rw-r--r--src/core/mlock.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/core/mlock.cpp b/src/core/mlock.cpp
deleted file mode 100644
index e4456658d..000000000
--- a/src/core/mlock.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-/*************************************************
-* Memory Locking Functions Source File *
-* (C) 1999-2007 Jack Lloyd *
-*************************************************/
-
-#include <botan/util.h>
-
-namespace Botan {
-
-/*************************************************
-* Lock an area of memory into RAM *
-*************************************************/
-void lock_mem(void*, u32bit)
- {
- }
-
-/*************************************************
-* Unlock a previously locked region of memory *
-*************************************************/
-void unlock_mem(void*, u32bit)
- {
- }
-
-}