summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/osdcore.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-08-29 22:53:40 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-08-29 22:53:40 +0000
commitf0ba9131ebdd6e7adefd73c5324b806ccd4c1c8a (patch)
tree7339d54de4072737231ebe40cfb4aa5ef690eb48 /src/osd/osdcore.h
parent4d657d4bdeb6b66870ea667ea3686eebd10daff9 (diff)
osd_is_bad_read_ptr is no more.
Diffstat (limited to 'src/osd/osdcore.h')
-rw-r--r--src/osd/osdcore.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/osd/osdcore.h b/src/osd/osdcore.h
index f28fb0f932c..dd3fee57890 100644
--- a/src/osd/osdcore.h
+++ b/src/osd/osdcore.h
@@ -758,28 +758,6 @@ void osd_free_executable(void *ptr, size_t size);
/*-----------------------------------------------------------------------------
- osd_is_bad_read_ptr: attempt to determine if the given pointer will
- generate an access violation if accessed for read
-
- Parameters:
-
- ptr - the pointer to examine
-
- size - the number of bytes to reference
-
- Return value:
-
- TRUE if an access to the referenced memory will generate an access
- violation on a read; FALSE otherwise.
-
- Notes:
-
- This function will eventually be deprecated.
------------------------------------------------------------------------------*/
-int osd_is_bad_read_ptr(const void *ptr, size_t size);
-
-
-/*-----------------------------------------------------------------------------
osd_break_into_debugger: break into the hosting system's debugger if one
is attached