diff options
Diffstat (limited to 'sysdeps/posix/profil.c')
-rw-r--r-- | sysdeps/posix/profil.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/posix/profil.c b/sysdeps/posix/profil.c index 6c8adbcd0b..f4f0acd7fc 100644 --- a/sysdeps/posix/profil.c +++ b/sysdeps/posix/profil.c @@ -77,7 +77,7 @@ __profil (u_short *sample_buffer, size_t size, size_t offset, u_int scale) if (__setitimer (ITIMER_PROF, &otimer, NULL) < 0) return -1; samples = NULL; - return sigaction (SIGPROF, &oact, NULL); + return __sigaction (SIGPROF, &oact, NULL); } if (samples) @@ -85,7 +85,7 @@ __profil (u_short *sample_buffer, size_t size, size_t offset, u_int scale) /* Was already turned on. Restore old timer and signal handler first. */ if (__setitimer (ITIMER_PROF, &otimer, NULL) < 0 - || sigaction (SIGPROF, &oact, NULL) < 0) + || __sigaction (SIGPROF, &oact, NULL) < 0) return -1; } @@ -97,7 +97,7 @@ __profil (u_short *sample_buffer, size_t size, size_t offset, u_int scale) act.sa_handler = (sighandler_t) &profil_counter; act.sa_flags = SA_RESTART; sigfillset (&act.sa_mask); - if (sigaction (SIGPROF, &act, &oact) < 0) + if (__sigaction (SIGPROF, &act, &oact) < 0) return -1; timer.it_value.tv_sec = 0; |