projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0d31f9
)
Speed up pp_entersub for usethreads with only 1 thread running.
author
Malcolm Beattie
<mbeattie@sable.ox.ac.uk>
Wed, 6 May 1998 13:08:29 +0000
(13:08 +0000)
committer
Malcolm Beattie
<mbeattie@sable.ox.ac.uk>
Wed, 6 May 1998 13:08:29 +0000
(13:08 +0000)
p4raw-id: //depot/perl@915
pp_hot.c
patch
|
blob
|
history
diff --git
a/pp_hot.c
b/pp_hot.c
index
0422605
..
8361452
100644
(file)
--- a/
pp_hot.c
+++ b/
pp_hot.c
@@
-1989,8
+1989,9
@@
PP(pp_entersub)
* (3) instead of (2) so we'd have to clone. Would the fact
* that we released the mutex more quickly make up for this?
*/
- svp = hv_fetch(thr->cvcache, (char *)cv, sizeof(cv), FALSE);
- if (svp) {
+ if (threadnum &&
+ (svp = hv_fetch(thr->cvcache, (char *)cv, sizeof(cv), FALSE)))
+ {
/* We already have a clone to use */
MUTEX_UNLOCK(CvMUTEXP(cv));
cv = *(CV**)svp;