Re: [Haifux] signal

2005-01-19 Thread Orna Agmon
On Thu, 13 Jan 2005, Muli Ben-Yehuda wrote: On Thu, Jan 13, 2005 at 08:35:20AM +0200, yakoub abaya wrote: when doing man signal : there is : typdef void (*sighandler_t)(int); Q:what is this typdef ?, i don't understand it It says that sighandler_t has the type pointer to a function that

[Haifux] signal

2005-01-12 Thread yakoub abaya
when doing man signal : there is : typdef void (*sighandler_t)(int); Q:what is this typdef ?, i don't understand it { i know that i can provide interrupt handler function with signal(...,...) } -- Haifa Linux

Re: [Haifux] signal

2005-01-12 Thread Muli Ben-Yehuda
On Thu, Jan 13, 2005 at 08:35:20AM +0200, yakoub abaya wrote: when doing man signal : there is : typdef void (*sighandler_t)(int); Q:what is this typdef ?, i don't understand it It says that sighandler_t has the type pointer to a function that accepts an int and returns void. Consult