diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-10-29 14:39:54 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-10-29 14:39:54 +0000 |
commit | 46930d8f1568c61dcd2ab37f6a2924dc79596ffc (patch) | |
tree | 67e8f7c0f338abbf9de51ffbb7fb9b3377619934 /fakethr.h | |
parent | 25f62d1c923a0e842a23489d92db1990acf9c23b (diff) | |
download | perl-46930d8f1568c61dcd2ab37f6a2924dc79596ffc.tar.gz |
Remove global macro "self". Change thr->Tself to thr->self.
p4raw-id: //depot/perl@190
Diffstat (limited to 'fakethr.h')
-rw-r--r-- | fakethr.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ struct thread_intern { #define init_thread_intern(t) \ STMT_START { \ - t->Tself = (t); \ + t->self = (t); \ (t)->i.next_run = (t)->i.prev_run = (t); \ (t)->i.wait_queue = 0; \ (t)->i.private = 0; \ |