~ubuntu-branches/ubuntu/vivid/xauth/vivid

« back to all changes in this revision

Viewing changes to process.c

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2007-06-22 15:19:06 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070622151906-3w5hz7i3d2hct2vu
Tags: 1:1.0.2-0ubuntu1
* New upstream release
* debian/control:
  - Updated Maintainer
  - Updated where module can be found
  - Added XS-Vcs* info
* debian/copyright
  - Added copyright for packaging
* debian/rules
  - Added cleanup for Makefile, config.h, stamp-*

Show diffs side-by-side

added added

removed removed

Lines of Context:
630
630
static char *xauth_filename = NULL;
631
631
static volatile Bool dieing = False;
632
632
 
633
 
#ifdef RETSIGTYPE /* autoconf AC_TYPE_SIGNAL */
634
 
# define _signal_t RETSIGTYPE
635
 
#else /* Imake */
636
 
#ifdef SIGNALRETURNSINT
637
 
#define _signal_t int
638
 
#else
639
 
#define _signal_t void
640
 
#endif
641
 
#endif /* RETSIGTYPE */
642
633
 
643
634
/* poor man's puts(), for under signal handlers */
644
635
#define WRITES(fd, S) (void)write((fd), (S), strlen((S)))
645
636
 
646
637
/* ARGSUSED */
647
 
static _signal_t 
 
638
static RETSIGTYPE 
648
639
die(int sig)
649
640
{
650
641
    dieing = True;
655
646
#endif
656
647
}
657
648
 
658
 
static _signal_t 
 
649
static RETSIGTYPE 
659
650
catchsig(int sig)
660
651
{
661
652
#ifdef SYSV