Re: [Mono-dev] Unix Signal in mono

2016-02-29 Thread techi eth
Thanks for quick hint. We can receive signal by using signal handler using Mono.Unix.Native.Stdlib. signal. I am trying to check possibility of sending signal from one process to another. Example : If i have two process (P1 & P2) & P1 want to send SIGTERM to P2. On Mon, Feb 29, 2016 at 1:11 PM,

Re: [Mono-dev] Unix Signal in mono

2016-02-29 Thread Miguel de Icaza
You call the "signal" API. Mono wraps that conveniently for you in the Mono.Posix assembly: Mono.Unix.Native.Stdlib.signal Miguel On Mon, Feb 29, 2016 at 7:45 AM, techi eth wrote: > Hi, > > What is the way by which one process can send Unix Signal to another > process. >

Re: [Mono-dev] profiling

2016-02-29 Thread Rodrigo Kumpera
Hi Neale, It is a concern as we addressed that issue over last year. If possible, could you file bugs with those .mlpd files attached so we can take a look? -- Rodrigo On Thu, Feb 25, 2016 at 3:18 PM, Neale Ferguson wrote: > Sometimes when we run the profiler and then

[Mono-dev] Unix Signal in mono

2016-02-29 Thread techi eth
Hi, What is the way by which one process can send Unix Signal to another process. Thanks Techi ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Unix Signal in mono

2016-02-29 Thread Edward Ned Harvey (mono)
> From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list- > boun...@lists.ximian.com] On Behalf Of techi eth > > Thanks for quick hint. > We can receive signal by using signal handler using > Mono.Unix.Native.Stdlib.signal. > I am trying to check possibility of sending signal from

Re: [Mono-dev] Unix Signal in mono

2016-02-29 Thread Alex Rønne Petersen
Hi, In that case, you want the kill () function, which is also provided by Mono.Posix. Regards, Alex On Mon, Feb 29, 2016 at 2:18 PM, techi eth wrote: > Thanks for quick hint. > We can receive signal by using signal handler using > Mono.Unix.Native.Stdlib.signal. > I am

Re: [Mono-dev] Unix Signal in mono

2016-02-29 Thread Jonathan Pryor
On Feb 29, 2016, at 8:18 AM, techi eth wrote: > Thanks for quick hint. > We can receive signal by using signal handler using > Mono.Unix.Native.Stdlib.signal. > I am trying to check possibility of sending signal from one process to > another. > > Example : If i have two

Re: [Mono-dev] Unix Signal in mono

2016-02-29 Thread Miguel de Icaza
Hey, My bad, I should have said "kill", not "signal" to send messages to other processes. Miguel. On Mon, Feb 29, 2016 at 1:33 PM, Jonathan Pryor wrote: > On Feb 29, 2016, at 8:18 AM, techi eth wrote: > > Thanks for quick hint. > > We can receive signal