diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-10-10 07:47:59 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-10-11 16:40:01 -0700 |
commit | 11dd4af68c0ed12a96c7434b812108627c44d407 (patch) | |
tree | 4fa846359a1e48dead279703c9cc643cca202d6d /misc/ifunc-impl-list.c | |
parent | 9a387d1f787f764474943294024b02258f14e80a (diff) | |
download | glibc-11dd4af68c0ed12a96c7434b812108627c44d407.tar glibc-11dd4af68c0ed12a96c7434b812108627c44d407.tar.gz glibc-11dd4af68c0ed12a96c7434b812108627c44d407.tar.bz2 glibc-11dd4af68c0ed12a96c7434b812108627c44d407.zip |
Framework to test IFUNC implementations on target
Diffstat (limited to 'misc/ifunc-impl-list.c')
-rw-r--r-- | misc/ifunc-impl-list.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/misc/ifunc-impl-list.c b/misc/ifunc-impl-list.c new file mode 100644 index 0000000000..c4b460d43e --- /dev/null +++ b/misc/ifunc-impl-list.c @@ -0,0 +1,32 @@ +/* Enumerate available IFUNC implementations of a function. Stub version. + Copyright (C) 2012 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 Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ + +#include <ifunc-impl-list.h> + +/* Fill ARRAY of MAX elements with IFUNC implementations for function + NAME supported on target machine and return the number of valid + entries. */ + +size_t +__libc_ifunc_impl_list + (const char *name __attribute__ ((unused)), + struct libc_ifunc_impl *array __attribute__ ((unused)), + size_t max __attribute__ ((unused))) +{ + return 0; +} |