On Sun, 02 Aug 2009 19:36:08 -0600, Michael Torrie wrote:
> Another possibility is shared memory segments. I'm not sure how
> security is done in this case.
Shared memory segments have an owner, group, and the standard ugo=rwx
permissions (execute permission is present but ignored); see the shmg
Justin DeCell wrote:
> I was hoping for a little help with a project I'm working on. I'm
> writing a daemon in python that I want to be queryable (i.e. I should
> be able to run foo -s and it will report some internal information
> about the foo daemon if it's running) but I can't figure out
MRAB wrote:
> Justin DeCell wrote:
>> Hi All,
>>
...
>> The only other way I thought
>> of would be to write to a file on disk every so often from the daemon
>> and just read the from the query process but it seems like there should
>> be a more elegant way to do this...
>>
>> By the way I'
Justin DeCell wrote:
Hi All,
I was hoping for a little help with a project I'm working on. I'm
writing a daemon in python that I want to be queryable (i.e. I should
be able to run foo -s and it will report some internal information about
the foo daemon if it's running) but I can't figure out
Hi All,
I was hoping for a little help with a project I'm working on. I'm
writing a daemon in python that I want to be queryable (i.e. I should
be able to run foo -s and it will report some internal information
about the foo daemon if it's running) but I can't figure out a way get
inform