Hi,
I wanted to implement high memory usage in pmprintf package cause it
eats up all my lower shared memory in one use case. As far as I see this
does not work.
Is it possible to give high mem to another process via DosGiveSharedMem
and queue? As I understand the pmprintf caller (pmprintf.dll) allocates
the high memory and put a string into it. The pointer to the string is transfered to the monitor program (pmprintf.exe - the server) via a
queue (DosOpenQueue). But the server always get a null pointer instead
the pointer to the string.
Any ideas?
Andi B. wrote:
Hi,
I wanted to implement high memory usage in pmprintf package cause it
eats up all my lower shared memory in one use case. As far as I see this
does not work.
Is it possible to give high mem to another process via DosGiveSharedMem
and queue? As I understand the pmprintf caller (pmprintf.dll) allocates
the high memory and put a string into it. The pointer to the string is
transfered to the monitor program (pmprintf.exe - the server) via a
queue (DosOpenQueue). But the server always get a null pointer instead
the pointer to the string.
Any ideas?
Isn't the problem that some 16bit API is involved? Looking at os2safe.h (GCC/libc), I see this,
```
/*
* Note! The DOS queue API does not work with data, but with addresses, request
* numbers, priorities and process IDs. I.e. the data address you give
* DosWriteQueue is NOT used to memcpy() what it points to into some internal
* buffer that is then queued. Instead that address is converted to
16-bit and
* placed on the queue.
*
* This means that the data pointer passed to DosWriteQueue CANNOT be a
high
* address! (The wrappers below makes sure all the other pointer
parameters
* can be pointing to high memory, though.)
*/
#define DosCreateQueue SafeDosCreateQueue
#define DosOpenQueue SafeDosOpenQueue
#define DosPeekQueue SafeDosPeekQueue
#define DosQueryQueue SafeDosQueryQueue
#define DosReadQueue SafeDosReadQueue
```
Dave
Thanks Dave. I didn't think about searching in libc/bww sources for programing guidelines before.
Beside that header file is there some official IBM documentation about?
I've searched all my files for OBJ_ANY and only found it in a few
toolkit headers. I mean just in case I've overlooked something.
Otherwise it seems someone (Knut, Dmitriy, ?) did a very good job in
writing down their findings.
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 445 |
Nodes: | 16 (0 / 16) |
Uptime: | 113:56:45 |
Calls: | 9,209 |
Calls today: | 8 |
Files: | 13,483 |
Messages: | 6,054,651 |