This is the mail archive of the libc-ports@sources.redhat.com mailing list for the libc-ports project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] fix typo in linuxthreads/sysdeps/tcb-offsets.sym


looks like the previous commit to this file accidentally used TCB_PRE_SIZE 
instead of TLS_PRE_TCB_SIZE
-mike

Attachment: pgp00000.pgp
Description: PGP signature

2006-10-19  Mike Frysinger  <vapier@gentoo.org>

	* sysdeps/ia64/tcb-offsets.sym (MULTIPLE_THREADS_OFFSET):
	Fix typo TLS_PRE_TCB_SIZE.

--- sysdeps/ia64/tcb-offsets.sym
+++ sysdeps/ia64/tcb-offsets.sym
@@ -3,7 +3,7 @@
 
 --
 #ifdef USE_TLS
-MULTIPLE_THREADS_OFFSET offsetof (struct _pthread_descr_struct, p_multiple_threads) - TCB_PRE_SIZE
+MULTIPLE_THREADS_OFFSET offsetof (struct _pthread_descr_struct, p_multiple_threads) - TLS_PRE_TCB_SIZE
 #else
 MULTIPLE_THREADS_OFFSET offsetof (tcbhead_t, multiple_threads)
 #endif

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]