summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-11-25 12:33:02 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-11-25 12:33:02 +0000
commit51dd5992be029393cb3f221313a1a6ec2a76c21a (patch)
tree8953d41139cfcf5fb36d28f1e01a518323faaf1f /thread.h
parentf7542a9d64058383949b49dafe0a654c777d57f8 (diff)
downloadperl-51dd5992be029393cb3f221313a1a6ec2a76c21a.tar.gz
Rename perl_thread to perl_os_thread.
p4raw-id: //depot/perl@289
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/thread.h b/thread.h
index 79059db8fc..5c78e7d2a2 100644
--- a/thread.h
+++ b/thread.h
@@ -5,7 +5,7 @@
#else
/* POSIXish threads */
-typedef pthread_t perl_thread;
+typedef pthread_t perl_os_thread;
#ifdef OLD_PTHREADS_API
# define pthread_mutexattr_init(a) pthread_mutexattr_create(a)
# define pthread_mutexattr_settype(a,t) pthread_mutexattr_setkind_np(a,t)
@@ -216,7 +216,7 @@ struct thread {
SV * oursv;
HV * cvcache;
- perl_thread self; /* Underlying thread object */
+ perl_os_thread self; /* Underlying thread object */
U32 flags;
AV * threadsv; /* Per-thread SVs ($_, $@ etc.) */
AV * specific; /* Thread-specific user data */