diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-11-25 12:33:02 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-11-25 12:33:02 +0000 |
commit | 51dd5992be029393cb3f221313a1a6ec2a76c21a (patch) | |
tree | 8953d41139cfcf5fb36d28f1e01a518323faaf1f /util.c | |
parent | f7542a9d64058383949b49dafe0a654c777d57f8 (diff) | |
download | perl-51dd5992be029393cb3f221313a1a6ec2a76c21a.tar.gz |
Rename perl_thread to perl_os_thread.
p4raw-id: //depot/perl@289
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2322,7 +2322,7 @@ void perl_cond_signal(cp) perl_cond *cp; { - perl_thread t; + perl_os_thread t; perl_cond cond = *cp; if (!cond) @@ -2343,7 +2343,7 @@ void perl_cond_broadcast(cp) perl_cond *cp; { - perl_thread t; + perl_os_thread t; perl_cond cond, cond_next; for (cond = *cp; cond; cond = cond_next) { |