1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
2002-12-14  Jakub Jelinek  <jakub@redhat.com>

	* dirent/bug-readdir1.c: Include unistd.h.
This commit is contained in:
Ulrich Drepper
2002-12-14 19:49:13 +00:00
parent 36b3f3eb11
commit 9d263d7284
48 changed files with 2360 additions and 4 deletions

View File

@ -17,8 +17,10 @@
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
#include <unistd.h>
#include <list.h>
#include "fork.h"
#include <tls.h>
#include <bits/libc-lock.h>
@ -38,4 +40,15 @@ __libc_pthread_init (ptr, reclaim)
/* The fork handler needed by libpthread. */
list_add_tail (&pthread_child_handler.list, &__fork_child_list);
/* We have a macro which is used in asm code describing data layout.
Make sure it does not get out of date. */
if (offsetof (struct pthread, header.data.multiple_threads)
!= MULTIPLE_THREADS_OFFSET)
{
#define str_n_len(str) str, sizeof (str) - 1
__libc_write (STDERR_FILENO,
str_n_len ("*** MULTIPLE_THREADS_OFFSET out of date\n"));
_exit (1);
}
}