summaryrefslogtreecommitdiff
path: root/lang/modula-3-socks/files/recv.c
blob: bf4729092b7071783e72098fabe93281bd4216a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "wrap.h"
#include <sys/types.h>
#include <sys/socket.h>

ssize_t
m3_recv(int s, void *buf, size_t len, int flags)
{
  int result;

  ENTER_CRITICAL;
  MAKE_WRITABLE(buf);
  result = recv(s, buf, len, flags);
  EXIT_CRITICAL;
  return result;
}