Remove assfail() chunk, it just complicates things and is never used

This commit is contained in:
Brian Behlendorf 2008-12-16 09:42:41 -08:00
parent a7b063d224
commit 236abf7d17
3 changed files with 4 additions and 30 deletions

View File

@ -1,3 +1 @@
gcc-branch zfs-branch
fix-branch
feature-branch

18
.topmsg
View File

@ -1,19 +1,7 @@
From: Brian Behlendorf <behlendorf1@llnl.gov> From: Brian Behlendorf <behlendorf1@llnl.gov>
Subject: [PATCH] zfs branch Subject: [PATCH] linux unused
Merged result of all changes which are relevant to both Solaris Track various large hunks which have been dropped simply
and Linux builds of the ZFS code. These are changes where there because they are not relevant to this port.
is a reasonable chance they will be accepted upstream.
Additionally, since this is effectively the root of the linux
ZFS tree the core linux build system is added here. This
includes autogen.sh, configure.ac, m4 macros, some scripts/*,
and makefiles for all the core ZFS components. Linux-only
features which require tweaks to the build system should appear
on the relevant topic branches. All autotools products which
result from autogen.sh are commited to the linux-configure-branch.
This branch also contains the META, ChangeLog, AUTHORS,
README, and GIT files.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>

View File

@ -208,18 +208,6 @@ uu_panic(const char *format, ...)
(void) pause(); (void) pause();
} }
int
assfail(const char *astring, const char *file, int line)
{
#if defined(__STDC__) && __STDC_VERSION__ - 0 >= 199901L
__assert_c99(astring, file, line, "unknown func");
#else
__assert(astring, file, line);
#endif
/*NOTREACHED*/
return (0);
}
static void static void
uu_lockup(void) uu_lockup(void)
{ {