Add EAFNOSUPPORT.

This commit is contained in:
Ulrich Drepper 2000-04-17 21:18:22 +00:00
parent d6c05bbe03
commit f80ea15d3b
5 changed files with 46 additions and 1 deletions

View File

@ -0,0 +1,18 @@
# XXX For now always link against the syscalls export file.
# This is a hack until the import/export stuff is worked out.
+postctor += /lib/syscalls.exp
# XXX This is a hack until we have the possibility to generate out own crt0.
static-start-installed-name = /usr/lib/crt0.o
ifeq ($(subdir),misc)
sysdep_routines += dl-open dl-sym dl-close
endif
# Don't compile the ctype glue code, since there is no old non-GNU C library.
inhibit-glue = yes
# XXX Don"t know yet why this is needed in the moment.
ifeq ($(subdir),timezone)
CPPFLAGS-zic.c = -Dunix
endif

View File

@ -0,0 +1,6 @@
libc {
GLIBC_2.2 {
# u*
umount;
}
}

View File

@ -1,3 +1,21 @@
/* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the GNU C Library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#include <unistd.h>
extern int accessx (const char *name, int type, int who);

View File

@ -0,0 +1 @@
/* This is a system call. */

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1999 Free Software Foundation, Inc.
/* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -98,6 +98,8 @@
# define ESOCKTNOSUPPORT 63 /* Socket type not supported. */
# define EOPNOTSUPP 64 /* Operation not supported on socket. */
# define EPFNOSUPPORT 65 /* Protocol family not supported. */
# define EAFNOSUPPORT 66 /* Address family not supported by protocol
family. */
# define EADDRINUSE 67 /* Address already in use. */
# define EADDRNOTAVAIL 68 /* Can't assign requested address. */
# define ENETDOWN 69 /* Network is down. */