|
From: Nicholas N. <nj...@ca...> - 2004-10-26 13:00:14
|
CVS commit by nethercote:
Code formatting changes only.
M +3 -7 valgrind.h.in 1.4
--- valgrind/include/valgrind.h.in #1.3:1.4
@@ -130,11 +130,6 @@
assert()) */
#define VALGRIND_MAGIC_SEQUENCE( \
- _zzq_rlval, /* result lvalue */ \
- _zzq_default, /* result returned when running on real CPU */ \
- _zzq_request, /* request code */ \
- _zzq_arg1, /* request first param */ \
- _zzq_arg2, /* request second param */ \
- _zzq_arg3, /* request third param */ \
- _zzq_arg4 /* request fourth param */ ) \
+ _zzq_rlval, _zzq_default, _zzq_request, \
+ _zzq_arg1, _zzq_arg2, _zzq_arg3, _zzq_arg4) \
{ \
(_zzq_rlval) = (_zzq_default); \
@@ -142,4 +137,5 @@
#endif /* NVALGRIND */
+
/* Some request codes. There are many more of these, but most are not
exposed to end-user view. These are the public ones, all of the
|