home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume26 / tulp-3.0.3 / part01 / k.c < prev    next >
C/C++ Source or Header  |  1993-04-15  |  2KB  |  51 lines

  1. /*-------------------------------------------------------------------------
  2.  *  Listserv - Unix Mailing List manager (sub-set of FRECP's
  3.  *             Bitnet Listserv tool.
  4.  *
  5.  *  Copyright (C) 1991,1992  Kimmo Suominen, Christophe Wolfhugel
  6.  *
  7.  *  Please read the files COPYRIGHT and AUTHORS for the extended
  8.  *  copyrights refering to this file.
  9.  *
  10.  *  This program is free software; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation; either version 1, or (at your option)
  13.  *  any later version.
  14.  *
  15.  *  This program is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program; if not, write to the Free Software
  22.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  *----------------------------------------------------------------------*/
  24.  
  25. static char rcsid[] = "@(#)$Id: k.c,v 1.1 92/02/18 15:51:57 listserv Exp $";
  26.  
  27. /*
  28.  * $Log:    k.c,v $
  29.  * Revision 1.1  92/02/18  15:51:57  listserv
  30.  * Initial revision
  31.  * 
  32.  */
  33.  
  34. #include <stdio.h>
  35. #include <signal.h>
  36. #include "conf.h"
  37.  
  38. void main()
  39. {
  40.    FILE *f;
  41.    unsigned int pid;
  42.    int rc;
  43.  
  44.    f=fopen(PIDFILE,"r");
  45.    if (f==NULL) exit(0);
  46.    rc=fscanf(f,"%u",&pid);
  47.    fclose(f);
  48.    if (rc>0) kill(pid,SIGUSR1);
  49.    exit(0);
  50. }
  51.