Fix for background process kill - mig

This commit is contained in:
Miguel de Icaza 1998-05-03 23:18:59 +00:00
parent 307bcd3f71
commit 6709050408
3 changed files with 7 additions and 2 deletions

View File

@ -85,11 +85,11 @@ realclean: clean
# and cleaning source links.
distclean:
rm -f $(srcdir)/*~ $(srcdir)/config.cache $(srcdir)/config.h
rm -f $(srcdir)/config.log $(srcdir)/config.status
rm -f $(srcdir)/mcfn_install
@for I in $(alldirs); do cd $$I; $(MAKE) $@ || exit 1; cd ..; done
rm -f $(srcdir)/Makefile $(srcdir)/Make.common
rm -f lib/mc.ext mcfn_install vfs/extfs/ftplist vfs/extfs/zip vfs/extfs/zoo vfs/extfs/lslR vfs/extfs/lha vfs/extfs/cpio vfs/extfs/deb vfs/extfs/rar
rm -f $(srcdir)/config.log $(srcdir)/config.status
distdirs:
mkdir ../mc-$(VERSION); \

View File

@ -1,3 +1,8 @@
1998-05-03 Miguel de Icaza <miguel@nuclecu.unam.mx>
* boxes.c (task_cb): Use kill, not INT, as we are catching INT in
the program.
Sat May 2 14:07:05 1998 Paul Sheer <psheer@obsidian.co.za>
* setup.c: ALT('H') now shows a directory history - that

View File

@ -881,7 +881,7 @@ task_cb (int action, void *ignored)
sig = SIGCONT;
tl->state = Task_Running;
} else if (action == B_KILL){
sig = SIGINT;
sig = SIGKILL;
}
if (sig == SIGINT)