From: Julian Seward Date: Sun, 24 Apr 2005 10:41:53 +0000 (+0000) Subject: A leftover from the days of our own libpthread; now irrelevant. X-Git-Tag: svn/VALGRIND_3_0_0~767 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ee1f7bca45551d41afdee26984929ad85e1d8c1;p=thirdparty%2Fvalgrind.git A leftover from the days of our own libpthread; now irrelevant. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3551 --- diff --git a/coregrind/dosyms b/coregrind/dosyms deleted file mode 100755 index b7ba8503ec..0000000000 --- a/coregrind/dosyms +++ /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 -