From: Julian Seward Date: Tue, 16 Apr 2002 02:09:31 +0000 (+0000) Subject: Update the message on clone() failure to reflect new pthreads work. X-Git-Tag: svn/VALGRIND_1_0_3~364 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e294b0448e4ba2c3d967b862cb2c0354d58f28fd;p=thirdparty%2Fvalgrind.git Update the message on clone() failure to reflect new pthreads work. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@82 --- diff --git a/vg_syscall_mem.c b/vg_syscall_mem.c index 77006fee60..2bac4c33de 100644 --- a/vg_syscall_mem.c +++ b/vg_syscall_mem.c @@ -340,7 +340,10 @@ void VG_(perform_assumed_nonblocking_syscall) ( ThreadId tid ) case __NR_clone: VG_(unimplemented) - ("clone(): Valgrind doesn't support threads; sorry."); + ("clone(): not supported by Valgrind.\n " + "We do now support programs linked against\n " + "libpthread.so, though. Re-run with -v and ensure that\n " + "you are picking up Valgrind's implementation of libpthread.so."); break; # if defined(__NR_modify_ldt)