This commit is contained in:
David E. O'Brien 2008-02-13 05:12:05 +00:00
parent 3156ea2d33
commit 6cc9986927
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=176225
2 changed files with 6 additions and 6 deletions

View File

@ -43,9 +43,9 @@
* Variant II tcb, first two members are required by rtld.
*/
struct tcb {
struct tcb *tcb_self; /* required by rtld */
void *tcb_dtv; /* required by rtld */
struct pthread *tcb_thread; /* our hook */
struct tcb *tcb_self; /* required by rtld */
void *tcb_dtv; /* required by rtld */
struct pthread *tcb_thread; /* our hook */
void *tcb_spare[1];
};

View File

@ -44,9 +44,9 @@
* %g7 points to the structure.
*/
struct tcb {
struct tcb *tcb_self; /* required by rtld */
void *tcb_dtv; /* required by rtld */
struct pthread *tcb_thread; /* our hook */
struct tcb *tcb_self; /* required by rtld */
void *tcb_dtv; /* required by rtld */
struct pthread *tcb_thread; /* our hook */
void *tcb_spare[1];
};