Sponsored Content
Top Forums Programming why multiple SIGINT raises when i hit C-c Post 302356768 by fpmurphy on Sunday 27th of September 2009 01:29:28 PM
Old 09-27-2009
Humm, the generally accepted way to handle a signal such as Ctrl-C in a threaded application is to create a specific signal handling thread which waits for a Ctrl-C and then sets a mutex or condition variable which the other threads check on a regular basis.

See Section 6.6 of Programming with POSIX Threads by Dave Butenhof. He provides example code for exactly what you are looking to do on starting on page 228. You can also find other examples if you do a web search.

By the way, it is bad practice to use setjmp and longjmp in threaded applications. Some versions of threads libraries actually use setjmp/longjmp internally for various purposes.
 

7 More Discussions You Might Find Interesting

1. Programming

Problem with handling SIGINT

For a program I am designing, which involves handling the keyboard input Ctrl^c (SIGINT), it is taking ages for the program to actually recognise and perform the corresponding action whenever I run it and hit Ctrl^C at the CL. I have to do at least 3 Ctrl^Cs before the program will actually... (3 Replies)
Discussion started by: JamesGoh
3 Replies

2. Programming

[C] fgets problem with SIGINT singlal!!!

Hi all, I have this method to read a string from a STDIN: void readLine(char* inputBuffer){ fgets (inputBuffer, MAX_LINE, stdin); fflush(stdin); /* remove '\n' char from string */ if(strlen(inputBuffer) != 0) inputBuffer = '\0'; } All work fine but if i... (1 Reply)
Discussion started by: hurricane86
1 Replies

3. Shell Programming and Scripting

Intercepting SIGINT in a bash script

I've written a bash script which captures video with DVgrab. Because of the nature of the tapes that I am digitizing, sometimes I want to quit capturing before the time that I set for DVgrab. When this is the case I press Ctrl-c and DVgrab exits cleanly, my problem is that there is additional... (5 Replies)
Discussion started by: Starcast
5 Replies

4. Shell Programming and Scripting

Trapping SIGINT after restarting program.

Tried to add a function to my control_c interrupt here. It works but has one little bug. If the user selects to run the function instead of exiting, the program restarts itself without forking as it should. However, after that control_c no longer works again. I wanted to allow the user to run... (1 Reply)
Discussion started by: Azrael
1 Replies

5. UNIX for Dummies Questions & Answers

SIGINT issue

May i know what are the possible causes for SIGINT other than ctrl-c? Thanks (17 Replies)
Discussion started by: pandeesh
17 Replies

6. Shell Programming and Scripting

Always pass SIGINT in ksh

The following command will run and wait for input from the user. /usr/sap/SAP/webdisp/wdispmon pf=/usr/sap/SAP/webdisp/profile What I would like to do is (in one command): - Add the above line to a ksh script - Receive the output - and send a SIGINT I have seen many posts on how to... (3 Replies)
Discussion started by: sapsid
3 Replies

7. Shell Programming and Scripting

Hit multiple URL from a text file and store result in other test file

Hi, I have a problem where i have to hit multiple URL that are stored in a text file (input.txt) and save their output in different text file (output.txt) somewhat like : cat input.txt http://192.168.21.20:8080/PPUPS/international?NUmber=917875446856... (3 Replies)
Discussion started by: mukulverma2408
3 Replies
setjmp(3)						     Library Functions Manual							 setjmp(3)

NAME
setjmp, _setjmp, longjmp, _longjmp - Saves and restores the current execution context LIBRARY
Standard C Library (libc.a, libc.so) System V Library (libsys5.a, libsys5.so) SYNOPSIS
#include <setjmp.h> int setjmp( jmp_buf environment); void longjmp( jmp_buf environment, int value); int _setjmp ( jmp_buf environment); void _longjmp( jmp_buf environment, int value); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: setjmp(), longjmp(): XSH4.2 _setjmp(), _longjmp(): XSH4.2 Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Specifies an address for a jmp_buf structure. Specifies the value you want written to the execution context as the return value of the setjmp() or _setjmp() function. If you specify 0 (zero) in this parameter, the execution context contains a value of 1 as the setjmp() or _setjmp() return value. See the RETURN VALUES section for more information. DESCRIPTION
The setjmp() and longjmp() functions are useful when handling errors and interrupts encountered in low-level functions of a program. The setjmp() function saves the current stack context and signal mask in the buffer specified by the environment parameter. You then use the buffer in a later call to the longjmp() function. The longjmp() function restores the stack context and signal mask that were saved by the setjmp() function. After the longjmp() function runs, program execution continues as though the corresponding call to the setjmp() function had just returned the value of the value parameter. The function that called the setjmp() function must not have returned before the completion of the longjmp() function. The _setjmp() and _longjmp() functions operate identically to the setjmp() and longjmp() functions, respectively, except that _setjmp() and _longjmp() manipulate only the stack context. These functions do not restore the signal mask. All accessible objects have values at the time longjmp() is called, except for some objects of automatic storage duration. Objects of automatic storage duration will have indeterminant values if they meet all of the following conditions: They are local to the function con- taining the corresponding setjmp() invocation. They do not have volatile-qualified type. They are changed between the setjmp() and the longjmp() call. Because it bypasses the usual function call and return mechanisms, the longjmp() function executes correctly in contexts of interrupts, signals, and any of their associated functions. However, if the longjmp() function is invoked from a nested signal handler (that is, from a function invoked as a result of a signal raised during the handling of another signal), the behavior is undefined. NOTES
[Tru64 UNIX] For compatibility, the System V versions of the setjmp() and longjmp() functions, which are equivalent to _setjmp() and _longjmp(), respectively, are also supported. To use the System V versions of setjmp() and longjmp(), you must link with the libsys5 library before you link with libc. CAUTION
The results of the longjmp() function are undefined in the following situations: The longjmp() function is called with an environment parameter that was not previously set by the setjmp() function. The function that made the corresponding call to the setjmp() function has already returned. If the longjmp() function detects one of these conditions, it calls the longjmperror() function. If longjmperror() returns, the program is aborted. The default version of longjmperror() displays an error message to standard error and returns. If you want your program to exit more gracefully, you can write your own version of the longjmperror() program. RETURN VALUES
After the longjmp() function is finished executing, program execution continues as though the corresponding call of the setjmp() function just returned. In other words, the execution context saved by the corresponding setjmp() function is in place and execution continues at the statement immediately following the call to the setjmp() function. Part of that execution context is the return value from the setjmp() function. When the setjmp() function actually returns (before the call to the longjmp() function), that return value is 0 (zero). When the longjmp() function returns, the execution context contains a non-zero value as the return value from the setjmp() function. The value you specify in the value parameter to the longjmp() function is written to the execution context as the return value for the setjmp() function. You cannot cause the execution context to contain a 0 (zero) value for the setjmp() return value. If you specify 0 in the value parameter, the execution context contains a 1 as the setjmp() return value. RELATED INFORMATION
Routines: siglongjmp(3), sigsetjmp(3) Standards: standards(5) delim off setjmp(3)
All times are GMT -4. The time now is 06:16 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy