diff options
author | Roland McGrath <roland@gnu.org> | 2005-10-16 10:32:31 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-10-16 10:32:31 +0000 |
commit | c45c24812b64c41a494e74c789a9e91ea21b3f7c (patch) | |
tree | 72a14048b284128565ea6565f4d60056645135f1 /sysdeps/mach/hurd/profil.c | |
parent | ce14289fccc98d2519f8572b0af5672a090d1cbc (diff) | |
download | glibc-c45c24812b64c41a494e74c789a9e91ea21b3f7c.tar.gz glibc-c45c24812b64c41a494e74c789a9e91ea21b3f7c.tar.xz glibc-c45c24812b64c41a494e74c789a9e91ea21b3f7c.zip |
[BZ #1249, BZ #1252] cvs/fedora-glibc-2_3-20051017T0259
2005-08-05 Alfred M. Szmidt <ams@gnu.org> [BZ #1252] * sysdeps/mach/hurd/setitimer.c (restart_itimer): Move static fn forward decl out of function body. * sysdeps/mach/hurd/profil.c: Likewise. [BZ #1249]
Diffstat (limited to 'sysdeps/mach/hurd/profil.c')
-rw-r--r-- | sysdeps/mach/hurd/profil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/profil.c b/sysdeps/mach/hurd/profil.c index d212872643..0426f67b6f 100644 --- a/sysdeps/mach/hurd/profil.c +++ b/sysdeps/mach/hurd/profil.c @@ -1,5 +1,5 @@ /* Low-level statistical profiling support function. Mach/Hurd version. - Copyright (C) 1995, 1996, 1997, 2000, 2002 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 2000, 2002, 2005 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 @@ -49,6 +49,7 @@ static kern_return_t profil_task_get_sampled_pcs (mach_port_t, sampled_pc_array_t, mach_msg_type_number_t *); static void fetch_samples (void); +static void profile_waiter (void); /* Enable statistical profiling, writing samples of the PC into at most SIZE bytes of SAMPLE_BUFFER; every processor clock tick while profiling @@ -64,7 +65,6 @@ update_waiter (u_short *sample_buffer, size_t size, size_t offset, u_int scale) if (profile_thread == MACH_PORT_NULL) { /* Set up the profiling collector thread. */ - static void profile_waiter (void); err = __thread_create (__mach_task_self (), &profile_thread); if (! err) err = __mach_setup_thread (__mach_task_self (), profile_thread, |