windows - fastest IN PROCESS technique for sharing memory and IPC in win32/C/C++ -
windows - fastest IN PROCESS technique for sharing memory and IPC in win32/C/C++ -
i'm writing real time library exports standardized interface (vst) , hosted external applications.
the library must publish table viewable thread in same process (if knows look) - clear, table must viewable dlls in process space - if know look.
accessing table must fast. virtual memory seems overkill, , i've considered using window handle (and still may) message pump, i'd prefer faster method, if 1 available.
also, shared info segment in pe i'd avoid if possible. think i'd rather utilize window handle.
i'm not concerned synchronization @ moment, can handle after fact. i'd suggestions fastest technique publish table within process space.
you seem confused. threads in same process share same address space, don't need form of ipc: if thread knows address of table, can access it.
c windows dll shared-memory
Comments
Post a Comment