|
From: Nicholas N. <nj...@ca...> - 2003-11-13 23:04:09
|
CVS commit by nethercote:
Removed no-longer-needed declarations of __SOME_SKIN_H.
M +0 -4 coregrind/vg_intercept.c 1.24
M +0 -4 coregrind/vg_libpthread.c 1.138
M +1 -4 coregrind/vg_replace_malloc.c 1.13
M +1 -5 coregrind/vg_scheduler.c 1.132
M +0 -2 memcheck/mac_replace_strmem.c 1.6
M +3 -3 none/tests/discard.c 1.3
--- valgrind/coregrind/vg_intercept.c #1.23:1.24
@@ -47,9 +47,5 @@
*/
-/* Sidestep the normal check which disallows using valgrind.h
- directly. */
-#define __VALGRIND_SOMESKIN_H
#include "valgrind.h"
-
#include "vg_include.h"
#include "vg_kerneliface.h"
--- valgrind/coregrind/vg_libpthread.c #1.137:1.138
@@ -53,9 +53,5 @@
*/
-/* Sidestep the normal check which disallows using valgrind.h
- directly. */
-#define __VALGRIND_SOMESKIN_H
#include "valgrind.h" /* For the request-passing mechanism */
-
#include "vg_include.h" /* For the VG_USERREQ__* constants */
--- valgrind/coregrind/vg_replace_malloc.c #1.12:1.13
@@ -42,9 +42,6 @@
------------------------------------------------------------------ */
-#include "vg_include.h"
-
-/* Sidestep the normal check which disallows using valgrind.h directly. */
-#define __VALGRIND_SOMESKIN_H
#include "valgrind.h" /* for VALGRIND_NON_SIMD_CALL[12] */
+#include "vg_include.h"
/*------------------------------------------------------------*/
--- valgrind/coregrind/vg_scheduler.c #1.131:1.132
@@ -29,11 +29,7 @@
*/
-#include "vg_include.h"
-
-/* Sidestep the normal check which disallows using valgrind.h
- directly. */
-#define __VALGRIND_SOMESKIN_H
#include "valgrind.h" /* for VG_USERREQ__RUNNING_ON_VALGRIND and
VG_USERREQ__DISCARD_TRANSLATIONS, and others */
+#include "vg_include.h"
/* BORKAGE/ISSUES as of 29 May 02
--- valgrind/memcheck/mac_replace_strmem.c #1.5:1.6
@@ -32,6 +32,4 @@
#include "mc_include.h"
-
-#define __VALGRIND_SOMESKIN_H
#include "valgrind.h"
--- valgrind/none/tests/discard.c #1.2:1.3
@@ -1,8 +1,8 @@
#include <stdio.h>
-/* Sidestep the normal check which disallows using valgrind.h
- directly. */
-#define __VALGRIND_SOMESKIN_H
#include "../../include/valgrind.h"
+
+
+
int fooble ( void )
|