diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-08-08 22:20:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-08-08 22:20:38 +0000 |
commit | 87843f15168b086d3f6d255ebfe311e314560004 (patch) | |
tree | ce4fa30eaf5581e7f0eb08a0def89c3e9504d568 /debug/noophooks.c | |
parent | 754549b3bed222fd15d748605143e5925296a7fc (diff) | |
download | glibc-87843f15168b086d3f6d255ebfe311e314560004.tar glibc-87843f15168b086d3f6d255ebfe311e314560004.tar.gz glibc-87843f15168b086d3f6d255ebfe311e314560004.tar.bz2 glibc-87843f15168b086d3f6d255ebfe311e314560004.zip |
Update.
1999-08-08 Ulrich Drepper <drepper@cygnus.com>
* string/bits/string2.h: Mark void* operations as extensions.
* sysdeps/i386/i486/bits/string.h: Likewise.
* debug/Makefile (routines): Add noophooks.
(extra-libs): Add libpcprofile. Add rules to build libpcprofile.
* debug/noophooks.c: New file.
* debug/pcprofile.c: New file.
Diffstat (limited to 'debug/noophooks.c')
-rw-r--r-- | debug/noophooks.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debug/noophooks.c b/debug/noophooks.c new file mode 100644 index 0000000000..5c1ae01960 --- /dev/null +++ b/debug/noophooks.c @@ -0,0 +1,25 @@ +/* Noop hooks for the instrumenting functions. + Copyright (C) 1999 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999. + + 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. */ + +void +__cyg_profile_func_enter (void *this_fn, void *call_site) +{ +} +strong_alias (__cyg_profile_func_enter, __cyg_profile_func_exit) |