Re: [fpc-pascal] Sharing memory between applications

2008-05-21 Thread Carsten Bager
> I need to share memory between applications and wanted to know if FPC > has this implemented. Today I use the windows "CreateFileMapping" > function, but this is windows specific. Here is a parcel of a program where I use sheared memory on Linux Regards Carsten -

Re: [fpc-pascal] Sharing memory between applications

2008-05-20 Thread Henry Vermaak
2008/5/20 Andreas Berger <[EMAIL PROTECTED]>: > I need to share memory between applications and wanted to know if FPC has > this implemented. Today I use the windows "CreateFileMapping" function, but > this is windows specific. > > Another thing: To synchronize the shared memory I use a mutex which

[fpc-pascal] Sharing memory between applications

2008-05-20 Thread Andreas Berger
I need to share memory between applications and wanted to know if FPC has this implemented. Today I use the windows "CreateFileMapping" function, but this is windows specific. Another thing: To synchronize the shared memory I use a mutex which can be initialized be name on each application. Ca