mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Allow gdnc to be profiled
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23113 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
82400c2834
commit
52e880eacc
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2006-06-29 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/Tools/gdnc.m: Don't try to trap SIGPROF
|
||||
|
||||
2006-06-27 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSUserDefaults.m: Fix spelling in comment
|
||||
|
|
|
@ -1106,6 +1106,9 @@ main(int argc, char** argv, char** env)
|
|||
|
||||
for (sym = 0; sym < NSIG; sym++)
|
||||
{
|
||||
#ifdef SIGPROF
|
||||
if (sym == SIGPROF) continue;
|
||||
#endif
|
||||
signal(sym, ihandler);
|
||||
}
|
||||
#ifndef __MINGW32__
|
||||
|
|
Loading…
Reference in a new issue