From 9640bbe1c1fab7e1373e59160889b1fbc0bd000c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 8 Oct 1999 07:03:03 +0000 Subject: Update. 1999-10-07 Ulrich Drepper * Implies: New file. * internals.h (struct _pthread_descr_struct): Add p_startfct. * manager.c (pthread_handle_create): Initialize p_startfct. * pthread.c: Define __linuxthread_pthread_sizeof_descr variable. --- linuxthreads/internals.h | 1 + 1 file changed, 1 insertion(+) (limited to 'linuxthreads/internals.h') diff --git a/linuxthreads/internals.h b/linuxthreads/internals.h index 34297fe752..73243d42dc 100644 --- a/linuxthreads/internals.h +++ b/linuxthreads/internals.h @@ -113,6 +113,7 @@ struct _pthread_descr_struct { size_t p_guardsize; /* size of guard area */ pthread_descr p_self; /* Pointer to this structure */ int p_nr; /* Index of descriptor in __pthread_handles */ + void *(*p_startfct) (void *); /* The startup function of this thread. */ } __attribute__ ((aligned(32))); /* We need to align the structure so that doubles are aligned properly. This is 8 bytes on MIPS and 16 bytes on MIPS64. -- cgit v1.2.3