Correct the buffer direction for recv() and send()

This commit is contained in:
Pierre Pronchery 2020-11-15 20:06:49 +01:00
parent 78e9be71f5
commit 5c537c00f0

View File

@ -26,14 +26,14 @@ arg2=INT32_OUT,address
[call::recv] [call::recv]
ret=INT32 ret=INT32
arg1=INT32,fd arg1=INT32,fd
arg2=BUFFER_IN,buf arg2=BUFFER_OUT,buffer
arg3=UINT32,size arg3=UINT32,size
arg4=UINT32,flags arg4=UINT32,flags
[call::send] [call::send]
ret=INT32 ret=INT32
arg1=INT32,fd arg1=INT32,fd
arg2=BUFFER_OUT,buf arg2=BUFFER_IN,buffer
arg3=UINT32,size arg3=UINT32,size
arg4=UINT32,flags arg4=UINT32,flags