diff options
author | Abhijit Menon-Sen <ams@wiw.org> | 2001-11-16 12:11:14 +0000 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-11-16 12:11:14 +0000 |
commit | 210b36aa2e9e009554be8970c3315c2658c0384f (patch) | |
tree | 71bb13e291837569d86a3f2f5c17515ccc1b9610 /README.threads | |
parent | d7ceb7fc1159206a67f149394fc7aa55f6b4f7dd (diff) | |
download | perl-210b36aa2e9e009554be8970c3315c2658c0384f.tar.gz |
[PATCH] Doc spellcheck + podcheck
From: Autrijus Tang <autrijus@egb.elixus.org>
Date: Thu, 15 Nov 2001 22:49:05 -0800
Message-Id: <20011116064905.GA44092@egb.elixus.org>
Subject: [PATCH] podcheck+spellcheck, the rest of the story
From: Autrijus Tang <autrijus@egb.elixus.org>
Date: Fri, 16 Nov 2001 00:42:20 -0800
Message-Id: <20011116084220.GA44295@egb.elixus.org>
Subject: Re: [PATCH] podcheck+spellcheck, the rest of the story
From: Nicholas Clark <nick@ccl4.org>
Date: Fri, 16 Nov 2001 10:32:01 +0000
Message-Id: <20011116103200.F62891@plum.flirble.org>
(Applied after suitable de-mangling.)
p4raw-id: //depot/perl@13041
Diffstat (limited to 'README.threads')
-rw-r--r-- | README.threads | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/README.threads b/README.threads index de95e10e66..414ca5a2ad 100644 --- a/README.threads +++ b/README.threads @@ -98,7 +98,7 @@ For Digital Unix 4.x: Add -lpthread -lc_r to lddlflags For some reason, the extra includes for pthreads make Digital UNIX - complain fatally about the sbrk() delcaration in perl's malloc.c + complain fatally about the sbrk() declaration in perl's malloc.c so use the native malloc, e.g. sh Configure -Uusemymalloc, or manually edit your config.sh as follows: Change usemymalloc to n @@ -145,7 +145,7 @@ Now you can do a make When you succeed in compiling and testing ("make test" after your -build) a threaded Perl in a platform previosuly unknown to support +build) a threaded Perl in a platform previously unknown to support threaded perl, please let perlbug@perl.com know about your victory. Explain what you did in painful detail. @@ -265,7 +265,7 @@ their associated mutex is held. (This constraint simplifies the implementation of condition variables in certain porting situations.) For POSIX threads, perl mutexes and condition variables correspond to POSIX ones. For FAKE_THREADS, mutexes are stubs and condition variables -are implmented as lists of waiting threads. For FAKE_THREADS, a thread +are implemented as lists of waiting threads. For FAKE_THREADS, a thread waits on a condition variable by removing itself from the runnable list, calling SCHEDULE to change thr to the next appropriate runnable thread and returning op (i.e. the new threads next op). |