Hallo alzaimar,
da der Speicher für deine named pipes aus dem nonpaged memory pool rekrutiert wird, solltest du vorsichtig mit zu großen Werten sein:
Microsoft : PSDK 2003 : CreateNamedPipe() : Remarks ... Every time a named pipe is created, the system creates the inbound and/or outbound buffers using nonpaged pool, which is the physical memory used by the kernel.
... The input and output buffer sizes are advisory. The actual buffer size reserved for each end of the named pipe is either the system default, the system minimum or maximum, or the specified size rounded up to the next allocation boundary. The buffer size specified should be small enough that your process will not run out of nonpaged pool, but large enough to accommodate typical requests.
Der system default sollte 64KB sein, wenn ich mich recht erinnere. Die Unter- und Obergrenzen sind mir leider nicht bekannt. Unter
OS/2 sollte man die buffer size unbedingt als Vielfaches von 1024 Byte wählen, damit das System nicht ausgebremst wird. Die Systemwerte sollten sich aber mit wenig Aufwand mittels GetNamedPipeInfo() ermitteln lassen.
Gute Nacht