~ubuntu-branches/ubuntu/trusty/isdnutils/trusty

« back to all changes in this revision

Viewing changes to eurofile/src/wuauth/sigfix.c

  • Committer: Package Import Robot
  • Author(s): Steve Langasek
  • Date: 2013-11-15 00:02:58 UTC
  • mfrom: (1.1.8) (31.1.1 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131115000258-tt9v3gasgrdml07k
Tags: 1:3.25+dfsg1-3.3ubuntu1
* Merge from Debian unstable:
  - resolves licensing issues with package contents.  LP: #511988.
  - includes proper upstream fix for ipppd on ARM.  LP: #453159.
  - resolves isdnutils-base removal failures.  LP: #813771.
  - fixes capiutils init script to not try to mount obsolete capifs.
    LP: #1064347.
* Remaining changes:
  - Switch libreadline5-dev to libreadline-gplv2-dev since this package
    appears to be GPLv2
  - debian/patches/no-imake.patch: Don't build xisdnload/xmonisdn using
    xmkmf/imake.  This patch was dropped in Debian without explanation;
    it still applies and seems to still be a good idea for eventual
    upstreaming, since imake is quite obsolete.
  - capi.conf: Fix typo for fcdsl2 firmware. LP: #189132.
  - Remove dependencies on /etc/inittab.
    - Disable the installation code to modify /etc/inittab.
    - isdnutils-base: Add ttyI0 example script, which needs to be installed
      in /etc/event.d/ttyI0.
    - isdnvboxserver: Add ttyI1 example script, which needs to be installed
      in /etc/event.d/ttyI1.
    - The two upstart scripts need to be edited.
    - Further improvements and documentation welcome.
* Changes included in Debian:
  - replace calls to ./MAKEDEV with /sbin/MAKEDEV
  - Build-depend on ppp-dev.
  - Switch to newer tcl -dev.
  - update to newer automake
  - debian/rules: use autoreconf to update the autotools in the capi20
    directory
  - debian/{compat,rules,*.files,.dirs}: Convert to Multi-arch.
  - debian/libcapi20-dev.install: Remove .la files (no builds use them).
* Changes included upstream:
  - fix for ARM FTBFS.
  - fix bashisms in vboxplay.
  - debian/patches/{config_libdir,toplevel-make}.patch: add CONFIG_LIBDIR
    override to upstream build system to support Multi-arch.
* Dropped changes:
  - kick dpatch to the curb.
* Handle migrating the blacklist file from
  /etc/modprobe.d/blacklist-capiutils.conf to the path used in Debian,
  /etc/modprobe.d/capiutils.conf.
* Handle rename of /etc/ppp/ip-down.d/99-ipppd and /etc/ppp/ip-up.d/00-ipppd
  to /etc/ppp/ip-down.d/ipppd and /etc/ppp/ip-up.d/ipppd
* Handle rename of /etc/init.d/isdnutils to /etc/init.d/isdnutils-base
* Restore standard.tcl to /usr/share/isdnvboxserver/default; maintainer
  scripts must not depend on contents of /usr/share/doc.
* Apply patches that were preserved in the 3.0 (quilt) migration, but
  were inadvertently not applied:
  - debian/patches/capifax.additional_error_codes.patch
  - debian/patches/capifax.3_1kHz_audio.patch
* Drop debian/isdnutils-base.cron.d, which isn't a cronjob example at all
  but an inittab example gone astray.
* debian/dotconfig*: don't use embedded quotes for paths; this confuses
  vbox's Makefiles something fierce, and causes files to be missed from
  debian/tmp'/usr/share/man/' at install time.
* Fix isdnlog and ipppd to not ship files used in the postinst under
  /usr/share/doc.
* Modernize the upstart examples.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This software is Copyright 1997 by Stan Barber. 
2
 
 *
3
 
 * Permission is hereby granted to copy, reproduce, redistribute or otherwise
4
 
 * use this software as long as: there is no monetary profit gained
5
 
 * specifically from the use or reproduction of this software, it is not
6
 
 * sold, rented, traded or otherwise marketed, and this copyright notice is
7
 
 * included prominently in any copy made. 
8
 
 *
9
 
 * The author make no claims as to the fitness or correctness of this software
10
 
 * for any use whatsoever, and it is provided as is. Any use of this software
11
 
 * is at the user's own risk. 
12
 
 */
13
 
#ifndef lint
14
 
static char * rcsid = "$Id: sigfix.c,v 1.1 1999/06/30 17:19:37 he Exp $";
15
 
#endif
16
 
#include "config.h"
17
 
 
18
 
 /*
19
 
  * delay_signaling(), enable_signaling - delay signal delivery for a while
20
 
  * 
21
 
  * Original Author: Wietse Venema with small changes by Dave Kinchlea and 
22
 
  * Stan Barber
23
 
  */
24
 
 
25
 
/* 
26
 
 * Some folks (notably those who do Linux hacking) say this fix is needed.
27
 
 * Others (notably the FreeBSD and BSDI folks) say if isn't.
28
 
 * I am making it possible to include of exclude it.
29
 
 * Just define NEED_SIGFIX and you get it.
30
 
 */
31
 
#ifdef NEED_SIGFIX
32
 
#include <sys/types.h>
33
 
#include <sys/signal.h>
34
 
#include <syslog.h>
35
 
 
36
 
static sigset_t saved_sigmask;
37
 
sigset_t block_sigmask;  /* used in ftpd.c */
38
 
static int delaying;
39
 
static int init_done;
40
 
#endif
41
 
/* enable_signaling - deliver delayed signals and disable signal delay */
42
 
 
43
 
#ifdef __STDC__
44
 
int     enable_signaling(void)
45
 
#else
46
 
int     enable_signaling()
47
 
#endif
48
 
{
49
 
#ifdef NEED_SIGFIX
50
 
    if (delaying != 0) {
51
 
        delaying = 0;
52
 
        if (sigprocmask(SIG_SETMASK, &saved_sigmask, (sigset_t *) 0) < 0) {
53
 
            syslog(LOG_ERR, "sigprocmask: %m");
54
 
            return (-1);
55
 
        }
56
 
    }
57
 
#endif
58
 
    return (0);
59
 
}
60
 
 
61
 
/* delay_signaling - save signal mask and block all signals */
62
 
#ifdef __STDC__
63
 
int     delay_signaling(void)
64
 
#else
65
 
int     delay_signaling()
66
 
#endif
67
 
{
68
 
#ifdef NEED_SIGFIX
69
 
    if (delaying == 0) {
70
 
        delaying = 1;
71
 
        if (sigprocmask(SIG_BLOCK, &block_sigmask, &saved_sigmask) < 0) {
72
 
            syslog(LOG_ERR, "sigprocmask: %m");
73
 
            return (-1);
74
 
        }
75
 
    }
76
 
#endif
77
 
    return (0);
78
 
}
79
 
 
80