Tagged Questions

0
votes
4answers
48 views

pthreads : pthread_cond_signal() from within critical section

I have the following piece of code in thread A, which blocks using pthread_cond_wait() pthread_mutex_lock(&my_lock); if ( false == testCondition ) pthread_c …
0
votes
2answers
32 views

Basic DSP question

I'm new to DSP programming, and I'm wondering how best to carry out the seemingly basic operation of level adujustment. Say I have an 8 bit number that represents the amplitude I …
0
votes
1answer
14 views

‘accept_position’ signal not getting called in Ruby/Gtk2

I'm creating a application with panes in Ruby/Gtk. When the panes are resized, I need to do some stuff. But I cannot figure out which signal to use. I think it is 'accept_position' …
1
vote
4answers
32 views

non-reentrant function in signal handler?

Hi guys, consider a signal handler that call exit() as last instruction: is safe to call non-reentrant functions (e.g. free()) in that handler? IMHO it would be legal due to the f …
3
votes
3answers
339 views

Explain the FFT to me

I want to take audio PCM data and find peaks in it. Specifically, I want to return the frequency and time at which a peak occurs. My understanding of this is that I have to take …
0
votes
1answer
19 views

how do you detect a weak wireless signal from a windows mobile 6 app?

I am using a Windows Mobile 6 based hand held device. I there a way to detect low or no wireless signal activity? Since I cannot detect this, my application is getting exceptions …
0
votes
2answers
66 views

Saving work after a SIGINT

I have a program which takes a long time to complete. I would like it to be able to catch SIGINT (ctrl-c) and call the self.save_work() method. As it stands, my signal_hander() d …
4
votes
1answer
72 views

siginterrupt() only works for the first signal? (Python)

For some reason, siginterrupt() only seems to set the behaviour for the first signal received. In this example program, the first SIGQUIT appears to do nothing, but the second sig …
1
vote
2answers
80 views

Signal handler for SIGALRM does not work even if resetting in the handler

The example code of section 10.6, the expected result is: after several iterations, the static structure used by getpwnam will be corrupted, and the program will terminate with SI …
0
votes
1answer
61 views

Trapping signals in Python

According to the documentation: There is no way to “block” signals temporarily from critical sections (since this is not supported by all Unix flavors). What stops me using s …
1
vote
1answer
48 views

Why can I not import the Python module ‘signal’ using Jython, in Linux?

I can't find any reference to the 'signal' class being left out in Jython. Using Jython 2.1. Thanks
1
vote
5answers
138 views

c alternative to signal() + alarm()

I'm building some FastCGI apps and it sort of bugs me that lighttpd doesn't kill them off after they've been idle, so I'm trying to have them close on their own. I tried using si …
0
votes
1answer
338 views

QT Signal to specific object’s slot

Hello, I would like to know which of the following is the proper way of doing thing with signal/slot in QT. I need a way to have multiple instance of a Dialog, i.e: A and B. And …
3
votes
1answer
107 views

Perl: Blocking signal NOT delayed as it should be -> Test code provided.

In a Perl script I'm writing I'm having a problem where I block the INT and QUIT signals, execute a process within backticks, and then unblock the INT and QUIT signals. I want to p …
1
vote
1answer
60 views

Signal handling using “TERM”

Hai I have a standalone application in which I have to prompt the user with an confirm dialog box to save the changes made by him when he tries to shutdown the system by start--&g …

1 2 3 next
15 30 50 per page