Ask a Question related to UNIX Programming, Design and Development.
-
Ben Fitzgerald #1
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
-
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... -
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... -
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... -
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... -
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.... -
Fletcher Glenn #2
Re: online docs for signal handling on *nix
Ben Fitzgerald wrote:
Try entering the command:>
> 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
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
-
Russell Shaw #3
Re: online docs for signal handling on *nix
Ben Fitzgerald wrote:
Read the libc manual: [url]http://www.gnu.org/manual/glibc-2.2.5/libc.html[/url]> 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.
Russell Shaw Guest
-
Villy Kruse #4
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:
Nothing drastic has changed since then. We still have BSD versus>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.
>
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
-
Joe Halpin #5
Re: online docs for signal handling on *nix
Ben Fitzgerald <ben_m_fREMOVE@yahoo.co.uk> writes:
In addition to the other replies you've gotten, there's an overview of> 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.
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
-
Ben Fitzgerald #6
Re: online docs for signal handling on *nix
On 16 Jul 2003 07:33:34 Joe Halpin <jhalpin@nortelnetworks.com_.nospam> wrote:
These are all very usefull suggestions/comments that I will follow up.> 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
Thanks for taking the time to post your ideas.
--
Ben Fitzgerald
London, UK
Ben Fitzgerald Guest



Reply With Quote

