]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
A leftover from the days of our own libpthread; now irrelevant.
authorJulian Seward <jseward@acm.org>
Sun, 24 Apr 2005 10:41:53 +0000 (10:41 +0000)
committerJulian Seward <jseward@acm.org>
Sun, 24 Apr 2005 10:41:53 +0000 (10:41 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3551

coregrind/dosyms [deleted file]

diff --git a/coregrind/dosyms b/coregrind/dosyms
deleted file mode 100755 (executable)
index b7ba850..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-
-# A simple script to help me ensure that my libpthread.so looks
-# from the outside, to the linker, identical to the original.
-
-nm /lib/libpthread.so.0 | grep " T " | cut -c 10- > orig-T
-nm /lib/libpthread.so.0 | grep " D " | cut -c 10- > orig-D
-nm /lib/libpthread.so.0 | grep " W " | cut -c 10- > orig-W
-nm /lib/libpthread.so.0 | grep " U " | cut -c 10- > orig-U
-
-nm ./libpthread.so | grep " T " | cut -c 10- > mine-T
-nm ./libpthread.so | grep " D " | cut -c 10- > mine-D
-nm ./libpthread.so | grep " W " | cut -c 10- > mine-W
-nm ./libpthread.so | grep " U " | cut -c 10- > mine-U
-
-echo ========================== TEXT orig vs mine =========================
-sdiff -w 80 orig-T mine-T
-echo
-
-echo ========================== WEAK orig vs mine =========================
-sdiff -w 80 orig-W mine-W
-echo
-
-echo ========================== DATA orig vs mine =========================
-sdiff -w 80 orig-D mine-D
-echo
-
-echo ========================== UNDF orig vs mine =========================
-sdiff -w 80 orig-U mine-U
-echo
-