aboutsummaryrefslogtreecommitdiff
path: root/include/valgrind.h
diff options
context:
space:
mode:
authornjn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9>2003-05-12 08:47:57 +0000
committernjn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9>2003-05-12 08:47:57 +0000
commitc229f5bab8f2149ff3ac1e8fd9d557c3627ff908 (patch)
tree9147cfa7132a22b195a4b5b52518ad8cd9332882 /include/valgrind.h
parent25418ae8771cb122d8fbd56a7f692f7b548f807c (diff)
downloadvalgrind-c229f5bab8f2149ff3ac1e8fd9d557c3627ff908.tar.gz
These client requests were moved to include/vg_skin.h a while ago, but I forgot
to delete them from here. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1626 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'include/valgrind.h')
-rw-r--r--include/valgrind.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/include/valgrind.h b/include/valgrind.h
index a27077024..8929c5950 100644
--- a/include/valgrind.h
+++ b/include/valgrind.h
@@ -231,45 +231,6 @@ typedef
})
-/* These requests are similar to those above; they insert the current
- ThreadState as the first argument to the called function. */
-#define VALGRIND_NON_SIMD_tstCALL0(_qyy_fn) \
- ({unsigned int _qyy_res; \
- VALGRIND_MAGIC_SEQUENCE(_qyy_res, 0 /* default return */, \
- VG_USERREQ__CLIENT_tstCALL0, \
- _qyy_fn, \
- 0, 0, 0); \
- _qyy_res; \
- })
-
-#define VALGRIND_NON_SIMD_tstCALL1(_qyy_fn, _qyy_arg1) \
- ({unsigned int _qyy_res; \
- VALGRIND_MAGIC_SEQUENCE(_qyy_res, 0 /* default return */, \
- VG_USERREQ__CLIENT_tstCALL1, \
- _qyy_fn, \
- _qyy_arg1, 0, 0); \
- _qyy_res; \
- })
-
-#define VALGRIND_NON_SIMD_tstCALL2(_qyy_fn, _qyy_arg1, _qyy_arg2) \
- ({unsigned int _qyy_res; \
- VALGRIND_MAGIC_SEQUENCE(_qyy_res, 0 /* default return */, \
- VG_USERREQ__CLIENT_tstCALL2, \
- _qyy_fn, \
- _qyy_arg1, _qyy_arg2, 0); \
- _qyy_res; \
- })
-
-#define VALGRIND_NON_SIMD_tstCALL3(_qyy_fn, _qyy_arg1, _qyy_arg2, _qyy_arg3) \
- ({unsigned int _qyy_res; \
- VALGRIND_MAGIC_SEQUENCE(_qyy_res, 0 /* default return */, \
- VG_USERREQ__CLIENT_tstCALL3, \
- _qyy_fn, \
- _qyy_arg1, _qyy_arg2, _qyy_arg3); \
- _qyy_res; \
- })
-
-
/* Counts the number of errors that have been recorded by a skin. Nb:
the skin must record the errors with VG_(maybe_record_error)() or
VG_(unique_error)() for them to be counted. */