summaryrefslogtreecommitdiff
path: root/libthreads
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1996-11-18 23:54:51 +0000
committerThomas Bushnell <thomas@gnu.org>1996-11-18 23:54:51 +0000
commit1a10b3582fd24d7ac8b70e3ad610d8a7fccaf3c6 (patch)
treefcd0435cb738acec666cafa72bfc34b6cc0360cc /libthreads
parentbd9d558835a033293f3ef81808f6e4290241d0ec (diff)
Mon Nov 18 16:36:56 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* cprocs.c (cproc_create): Cast CHILD in assignment.
Diffstat (limited to 'libthreads')
-rw-r--r--libthreads/ChangeLog4
-rw-r--r--libthreads/cprocs.c6
2 files changed, 9 insertions, 1 deletions
diff --git a/libthreads/ChangeLog b/libthreads/ChangeLog
index db5eb9e3..a70a35bd 100644
--- a/libthreads/ChangeLog
+++ b/libthreads/ChangeLog
@@ -1,3 +1,7 @@
+Mon Nov 18 16:36:56 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
+
+ * cprocs.c (cproc_create): Cast CHILD in assignment.
+
Mon Oct 21 22:05:48 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* i386/csw.S (CALL_MCOUNT): New macro.
diff --git a/libthreads/cprocs.c b/libthreads/cprocs.c
index 71a6a3ad..2975671c 100644
--- a/libthreads/cprocs.c
+++ b/libthreads/cprocs.c
@@ -26,6 +26,10 @@
/*
* HISTORY
* $Log: cprocs.c,v $
+ * Revision 1.8 1995/12/06 19:48:34 mib
+ * (condition_unimplies): Take address of (*impp)->next in assignment to
+ * IMPP on loop step instruction.
+ *
* Revision 1.7 1995/09/22 17:51:10 roland
* Include hurd/threadvar.h.
*
@@ -748,7 +752,7 @@ cproc_create()
sizeof (long int));
cproc_prepare(child, &child->context, stack);
/* Set up the cproc_self ptr at the base of CHILD's stack. */
- ur_cthread_ptr(stack) = child;
+ ur_cthread_ptr(stack) = (ur_cthread_t) child;
cproc_ready(child,0);
}
return child;