mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-22 15:31:14 +00:00
Fix for profiling
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@23115 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3784cdcd22
commit
c64d018856
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2006-06-22 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Tools/gpbs.m: Fix to get profiling to work for this daemon
|
||||
|
||||
2006-05-29 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/xlib/XGGState.m (-dealloc, -deepen):
|
||||
|
|
|
@ -1176,6 +1176,9 @@ init(int argc, char** argv, char **env)
|
|||
|
||||
for (count = 0; count < NSIG; count++)
|
||||
{
|
||||
#ifdef SIGPROF
|
||||
if (count == SIGPROF) continue;
|
||||
#endif
|
||||
signal((int)count, ihandler);
|
||||
}
|
||||
#ifdef SIGPIPE
|
||||
|
|
Loading…
Reference in a new issue