diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-23 08:25:15 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-23 08:25:15 +0000 |
commit | 98e763d441c2896f407813bf36a5ae1c3c4a0369 (patch) | |
tree | 7faad93bc0aeba9bb107ab59d1c6c8e3cd5ae79c /libpthread/linuxthreads/pthread.c | |
parent | f6a7ce04b503695f1a4aaf48fc81b227d0daf052 (diff) |
Just be a bit less different from latest glibc version in comments
and in the files where variables live.
Diffstat (limited to 'libpthread/linuxthreads/pthread.c')
-rw-r--r-- | libpthread/linuxthreads/pthread.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpthread/linuxthreads/pthread.c b/libpthread/linuxthreads/pthread.c index ace6ac9eb..42127d03e 100644 --- a/libpthread/linuxthreads/pthread.c +++ b/libpthread/linuxthreads/pthread.c @@ -193,6 +193,9 @@ const int __pthread_offsetof_descr = offsetof(struct pthread_handle_struct, h_descr); const int __pthread_offsetof_pid = offsetof(struct _pthread_descr_struct, p_pid); +const int __linuxthreads_pthread_sizeof_descr + = sizeof(struct _pthread_descr_struct); + /* Forward declarations */ |