X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Faxwin3_src%2FWM%2Fipc_acess.c;h=700b60f41214a18c54df64e4d3b0041e85b10041;hb=2238e69eea50d2274553926f3f294822c1972ff0;hp=26f60a243f7c85790dd39d1a13a8b1b1c0543b29;hpb=69597a188bf638485ea83b7608430f92080c1855;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin3_src/WM/ipc_acess.c b/Usermode/Applications/axwin3_src/WM/ipc_acess.c index 26f60a24..700b60f4 100644 --- a/Usermode/Applications/axwin3_src/WM/ipc_acess.c +++ b/Usermode/Applications/axwin3_src/WM/ipc_acess.c @@ -12,7 +12,7 @@ #include // === CONSTANTS === -#define STATICBUF_SIZE 64 +#define STATICBUF_SIZE 256 #define AXWIN_PORT 4101 // === PROTOTYPES === @@ -198,8 +198,10 @@ int IPC_Type_IPCPipe_Compare(const void *Ident1, const void *Ident2) } void IPC_Type_IPCPipe_Send(const void *Ident, size_t Length, const void *Data) { - size_t rv = _SysWrite( *(const int*)Ident, Data, Length ); + int fd = *(const int*)Ident; + size_t rv = _SysWrite( fd, Data, Length ); if(rv != Length) { - _SysDebug("Sent message oversize %x", Length); + _SysDebug("Message send for IPCPipe FD %i %i req, %i sent", + fd, Length, rv); } }