Working example of extension class in C/C++ ?

Stuart D. Gathman stuart at bmsi.com
Tue Mar 11 21:07:37 EST 2003


On Tue, 11 Mar 2003 16:20:41 -0500, дамјан г. wrote:

> There already is a shared memory support in Pytohn, look at the mmap
> module. What would be nice, though, is a shared-mem dictionary that also
> can store its values in the sahred memory, thus creating a super-fast
> and simple mmaped Python IPC.

mmap is a different API than shm.  The OP wants to wrap the SysV shared
memory API - which does not involve files (except as a kludgey convention
for constructing 'keys' to identify shm segments). 

-- 
	      Stuart D. Gathman <stuart at bmsi.com>
Business Management Systems Inc.  Phone: 703 591-0911 Fax: 703 591-6154
"Confutatis maledictis, flamis acribus addictis" - background song for
a Microsoft sponsored "Where do you want to go from here?" commercial.




More information about the Python-list mailing list