]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Update the message on clone() failure to reflect new pthreads work.
authorJulian Seward <jseward@acm.org>
Tue, 16 Apr 2002 02:09:31 +0000 (02:09 +0000)
committerJulian Seward <jseward@acm.org>
Tue, 16 Apr 2002 02:09:31 +0000 (02:09 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@82

vg_syscall_mem.c

index 77006fee60a34eeaf4064d2af560a5a9ad7d6df4..2bac4c33de68f0cb39f19f7cbea65f3b5d2a3448 100644 (file)
@@ -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)