diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-09-10 13:56:50 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-09-10 13:56:50 +0000 |
commit | 5538b5808b062cabb0bf41698c02c8011317900e (patch) | |
tree | 06c0dd31beea147a0228f529586fae6c1875f3d7 /thread.h | |
parent | 1304aa9d125296870a384c81cea5102c45d467c8 (diff) | |
download | perl-5538b5808b062cabb0bf41698c02c8011317900e.tar.gz |
Solaris fixes: delete pad and padname from thread.h and remove
MUTEX_* stuff when malloc.c gets copied to x2p/malloc.c.
p4raw-id: //depot/perl@61
Diffstat (limited to 'thread.h')
-rw-r--r-- | thread.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -126,8 +126,6 @@ struct thread { /* XXX What about magic variables such as $/, $? and so on? */ HV * Tdefstash; HV * Tcurstash; - AV * Tpad; - AV * Tpadname; SV ** Ttmps_stack; I32 Ttmps_ix; @@ -263,8 +261,6 @@ typedef struct condpair { #define Xpv (thr->TXpv) #define defstash (thr->Tdefstash) #define curstash (thr->Tcurstash) -#define pad (thr->Tpad) -#define padname (thr->Tpadname) #define tmps_stack (thr->Ttmps_stack) #define tmps_ix (thr->Ttmps_ix) |