Re: Exchanging data with a C program using shared memory (sysV IPC)

2006-06-29 Thread Al
"slacker" <[EMAIL PROTECTED]> writes: Hello slacker, > Al wrote: > >> I want my python application to communicate with an legacy C program which >> read/write data in a shared memory (Unix Sys V IPC). > > Have you looked at the dl module? Types and portability aside, it > might provide you with

Re: Exchanging data with a C program using shared memory (sysV IPC)

2006-06-27 Thread slacker
Al wrote: > I want my python application to communicate with an legacy C program which > read/write data in a shared memory (Unix Sys V IPC). Have you looked at the dl module? Types and portability aside, it might provide you with what you need. Cheers, - slacker -- http://mail.python.org/ma

Exchanging data with a C program using shared memory (sysV IPC)

2006-06-27 Thread Al
Hello, I want my python application to communicate with an legacy C program which read/write data in a shared memory (Unix Sys V IPC). It seems that there are no official shm nor sysV ipc module, and that non-official ones are dead. I can't modify the C code to change its communication method. H