mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Bugfix ... suspend should send SIGSTOP
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@18107 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
38d85cf15e
commit
ff9424c8e9
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-11-23 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSTask.m: ([-suspend]) send SIGSTOP as documented ... bug
|
||||
reported by Jim Fowler.
|
||||
|
||||
2003-11-22 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* configure.ac: Typo fix - add original CPPFLAGS back when updating
|
||||
|
|
|
@ -610,9 +610,9 @@ pty_slave(const char* name)
|
|||
}
|
||||
#ifndef __MINGW__
|
||||
#ifdef HAVE_KILLPG
|
||||
killpg(_taskId, SIGTERM);
|
||||
killpg(_taskId, SIGSTOP);
|
||||
#else
|
||||
kill(-_taskId, SIGTERM);
|
||||
kill(-_taskId, SIGSTOP);
|
||||
#endif
|
||||
#endif
|
||||
return YES;
|
||||
|
|
Loading…
Reference in a new issue