summaryrefslogtreecommitdiff
path: root/fakethr.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 /fakethr.h
parentf7542a9d64058383949b49dafe0a654c777d57f8 (diff)
downloadperl-51dd5992be029393cb3f221313a1a6ec2a76c21a.tar.gz
Rename perl_thread to perl_os_thread.
p4raw-id: //depot/perl@289
Diffstat (limited to 'fakethr.h')
-rw-r--r--fakethr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fakethr.h b/fakethr.h
index e09a757b6d..596e8a9e3e 100644
--- a/fakethr.h
+++ b/fakethr.h
@@ -1,7 +1,7 @@
typedef int perl_mutex;
typedef int perl_key;
-typedef struct thread *perl_thread;
+typedef struct thread *perl_os_thread;
/* With fake threads, thr is global(ish) so we don't need dTHR */
#define dTHR extern int errno
@@ -14,7 +14,7 @@ typedef struct perl_wait_queue *perl_cond;
/* Ask thread.h to include our per-thread extras */
#define HAVE_THREAD_INTERN
struct thread_intern {
- perl_thread next_run, prev_run; /* Linked list of runnable threads */
+ perl_os_thread next_run, prev_run; /* Linked list of runnable threads */
perl_cond wait_queue; /* Wait queue that we are waiting on */
IV private; /* Holds data across time slices */
I32 savemark; /* Holds MARK for thread join values */