summaryrefslogtreecommitdiff
path: root/fakethr.h
diff options
context:
space:
mode:
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 596e8a9e3e..8b1e76ff9b 100644
--- a/fakethr.h
+++ b/fakethr.h
@@ -1,12 +1,12 @@
typedef int perl_mutex;
typedef int perl_key;
-typedef struct thread *perl_os_thread;
+typedef struct perl_thread *perl_os_thread;
/* With fake threads, thr is global(ish) so we don't need dTHR */
#define dTHR extern int errno
struct perl_wait_queue {
- struct thread * thread;
+ struct perl_thread * thread;
struct perl_wait_queue * next;
};
typedef struct perl_wait_queue *perl_cond;