Re: libmysql setting it's own signal handlers?

2004-05-01 Thread Joshua J. Kugler
OK...thanks for the clarification. It helps. And it's good to know that what I'm doing won't break anything. j- k- On Thursday 29 April 2004 07:16 pm, Sasha Pachev said something like: > Joshua J. Kugler wrote: > > I have a program that is using (via a front end library) libmysql. If

Re: libmysql setting it's own signal handlers?

2004-04-29 Thread Sasha Pachev
Joshua J. Kugler wrote: I have a program that is using (via a front end library) libmysql. If I set up a signal handler before I initialize libmysql, my signal handler is not called when that signal is sent to the process. If I move the line of code that sets the signal handler to *after* the

libmysql setting it's own signal handlers?

2004-04-29 Thread Joshua J. Kugler
I have a program that is using (via a front end library) libmysql. If I set up a signal handler before I initialize libmysql, my signal handler is not called when that signal is sent to the process. If I move the line of code that sets the signal handler to *after* the line that initializes li