online docs for signal handling on *nix

Ask a Question related to UNIX Programming, Design and Development.

  1. #1

    Default online docs for signal handling on *nix

    Hi

    I've googled for this but didn't strike gold.

    I'm working on a linux box but would welcome pointers to any
    basic signal handling documentation online.

    I have read the book "Using C on the Unix system" but it was
    printed in 1991 so it's not up to date.

    I accept that I may have to buy a book on this. (perhaps
    Addison Wesley-Advanced Programming in the UNIX Environment)

    Any recommendations for online docs? Or failing that, printed
    material.

    Thanks,

    --
    Ben Fitzgerald
    London, UK
    Ben Fitzgerald Guest

  2. Similar Questions and Discussions

    1. Problems with printing online docs
      Hi, the online docs often get truncated when printed to (world standard) A4 paper. In some cases after fishing around I get to the equivalent...
    2. Looking for portable signal handling to implement Server Daemon
      Hello, I want to write a server daemon class, from the concept similar to Net::Daemon -- i.e., a framework where the actual server inherits my...
    3. MTB-How to convert multiple .pdf docs to MS Word docs all at same time.
      Is there a way to convert multiple .pdf documents to MS Word Docs all at the same time without having to open each .pdf document & save as a MS Word...
    4. Standard Library Docs online at ruby-doc.org
      The HTML output from the RDoc comments from Gavin Sinclair's stdlib-doc project are online at www.ruby-doc.org . The pages have a nie index...
    5. Professional Photographers - Sell your Photos Online , Online Proofing, Watermarking, Image Protection, and more.
      On 6 Jul 2003 11:40:28 -0700, in <9d2caaf1.0307061040.a857786@posting.google.com>, bluearchtop@my-deja.com (Ted Smith) said: Too expensive....
  3. #2

    Default Re: online docs for signal handling on *nix

    Ben Fitzgerald wrote:
    >
    > Hi
    >
    > I've googled for this but didn't strike gold.
    >
    > I'm working on a linux box but would welcome pointers to any
    > basic signal handling documentation online.
    >
    > I have read the book "Using C on the Unix system" but it was
    > printed in 1991 so it's not up to date.
    >
    > I accept that I may have to buy a book on this. (perhaps
    > Addison Wesley-Advanced Programming in the UNIX Environment)
    >
    > Any recommendations for online docs? Or failing that, printed
    > material.
    >
    > Thanks,
    >
    > --
    > Ben Fitzgerald
    > London, UK
    Try entering the command:

    man sigaction

    On any UNIX system, that has manuals installed, this will
    return a concise summary of the sigaction command which is
    used to register signal handlers with the system.

    --
    Fletcher Glenn
    email [email]f-g-l-e-n-n@quest.com[/email] (remove the dashes)
    Fletcher Glenn Guest

  4. #3

    Default Re: online docs for signal handling on *nix

    Ben Fitzgerald wrote:
    > Hi
    >
    > I've googled for this but didn't strike gold.
    >
    > I'm working on a linux box but would welcome pointers to any
    > basic signal handling documentation online.
    >
    > I have read the book "Using C on the Unix system" but it was
    > printed in 1991 so it's not up to date.
    >
    > I accept that I may have to buy a book on this. (perhaps
    > Addison Wesley-Advanced Programming in the UNIX Environment)
    >
    > Any recommendations for online docs? Or failing that, printed
    > material.
    Read the libc manual: [url]http://www.gnu.org/manual/glibc-2.2.5/libc.html[/url]

    Russell Shaw Guest

  5. #4

    Default Re: online docs for signal handling on *nix

    On 15 Jul 2003 23:05:21 GMT,
    Ben Fitzgerald <ben_m_fREMOVE@yahoo.co.uk> wrote:

    >Hi
    >
    >I've googled for this but didn't strike gold.
    >
    >I'm working on a linux box but would welcome pointers to any
    >basic signal handling documentation online.
    >
    >I have read the book "Using C on the Unix system" but it was
    >printed in 1991 so it's not up to date.
    >
    Nothing drastic has changed since then. We still have BSD versus
    SysV style signal() handling and POSIX style sigaction() with a number of
    implementation defined flags. The only new issue realy is threading
    which complicates things a bit.



    "Advanced Programming in the UNIX Environment", Addison-Wesley 1992
    is still a great book.


    Villy
    Villy Kruse Guest

  6. #5

    Default Re: online docs for signal handling on *nix

    Ben Fitzgerald <ben_m_fREMOVE@yahoo.co.uk> writes:
    > I've googled for this but didn't strike gold.
    >
    > I'm working on a linux box but would welcome pointers to any
    > basic signal handling documentation online.
    In addition to the other replies you've gotten, there's an overview of
    signals on the OpenGroup web page:

    [url]http://www.opengroup.org/onlinepubs/007904975/functions/xsh_chap02_04.html#tag_02_04[/url]

    Joe
    Joe Halpin Guest

  7. #6

    Default Re: online docs for signal handling on *nix

    On 16 Jul 2003 07:33:34 Joe Halpin <jhalpin@nortelnetworks.com_.nospam> wrote:
    > Ben Fitzgerald <ben_m_fREMOVE@yahoo.co.uk> writes:
    >
    >> I've googled for this but didn't strike gold.
    >>
    >> I'm working on a linux box but would welcome pointers to any
    >> basic signal handling documentation online.
    >
    > In addition to the other replies you've gotten, there's an overview of
    > signals on the OpenGroup web page:
    >
    > [url]http://www.opengroup.org/onlinepubs/007904975/functions/xsh_chap02_04.html#tag_02_04[/url]
    >
    > Joe
    These are all very usefull suggestions/comments that I will follow up.

    Thanks for taking the time to post your ideas.

    --
    Ben Fitzgerald
    London, UK
    Ben Fitzgerald Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139