Re: "Daemonizing" an application.

2013-02-27 Thread Gilles Lenfant
Le mercredi 27 février 2013 14:55:42 UTC+1, Tarek Ziadé a écrit : > On 2/27/13 11:52 AM, Gilles Lenfant wrote: > > > Hello, [...] > > > Thanks in advance fo any pointer. > > > > > You can have a look at Circus - https://circus.readthedocs.org which is > > a process manager. > > > > "circ

Re: "Daemonizing" an application.

2013-02-27 Thread Tarek Ziadé
s/TPC/TCP ;) -- http://mail.python.org/mailman/listinfo/python-list

Re: "Daemonizing" an application.

2013-02-27 Thread Tarek Ziadé
On 2/27/13 11:52 AM, Gilles Lenfant wrote: Hello, Sorry for the obscure title, but I can't make short to explain what I'm searching for. :) I made an app (kind of proxy) that works without UI within it's process. So far, so good. Now I need to change "live" some controls of this application,

Re: "Daemonizing" an application.

2013-02-27 Thread Vytas D.
Hello, Just recently learned about memory-mapped files (module mmap). If two processes open the same file, this file is mapped for both processes. So at the same time the same memory space can be accesses by two processes. The documentation stated that memory-mapped files can (and are) used for in

Re: "Daemonizing" an application.

2013-02-27 Thread Chris Angelico
On Thu, Feb 28, 2013 at 12:06 AM, Gilles Lenfant wrote: > Le mercredi 27 février 2013 11:52:19 UTC+1, Gilles Lenfant a écrit : >> Hello, >> > Hello again, > > And thanks to all for your pointers and ideas. > > As the app is already tied to an Unix like OS, I'll go with signal handling > first sin

Re: "Daemonizing" an application.

2013-02-27 Thread Gilles Lenfant
Le mercredi 27 février 2013 11:52:19 UTC+1, Gilles Lenfant a écrit : > Hello, > Hello again, And thanks to all for your pointers and ideas. As the app is already tied to an Unix like OS, I'll go with signal handling first since I can do all I need through reconfiguration (SIGHUP). If I need ot

Re: "Daemonizing" an application.

2013-02-27 Thread Jean-Michel Pichavant
- Original Message - > Hello, > > Sorry for the obscure title, but I can't make short to explain what > I'm searching for. :) > > I made an app (kind of proxy) that works without UI within it's > process. So far, so good. > > Now I need to change "live" some controls of this application,

Re: "Daemonizing" an application.

2013-02-27 Thread Sven
On 27 February 2013 11:03, Chris Angelico wrote: > On Wed, Feb 27, 2013 at 9:52 PM, Gilles Lenfant > wrote: > > Hello, > > > > Sorry for the obscure title, but I can't make short to explain what I'm > searching for. :) > > > > I made an app (kind of proxy) that works without UI within it's proce

Re: "Daemonizing" an application.

2013-02-27 Thread Werner Thie
Hi Might be an overkill, but have a look at twisted, http://www.twistedmatrix.com I usually use the spread package for structured communication between partners via localhost What are the best practices to do this ? Examples in a well known Pyhon app I could hack ? Is it possible with sta

Re: "Daemonizing" an application.

2013-02-27 Thread Chris Angelico
On Wed, Feb 27, 2013 at 9:52 PM, Gilles Lenfant wrote: > Hello, > > Sorry for the obscure title, but I can't make short to explain what I'm > searching for. :) > > I made an app (kind of proxy) that works without UI within it's process. So > far, so good. > > Now I need to change "live" some con

"Daemonizing" an application.

2013-02-27 Thread Gilles Lenfant
Hello, Sorry for the obscure title, but I can't make short to explain what I'm searching for. :) I made an app (kind of proxy) that works without UI within it's process. So far, so good. Now I need to change "live" some controls of this application, without stopping it. So my app will be spl