summaryrefslogtreecommitdiffstats
path: root/lang/modula-3-socks/files/send.c
blob: 20608ab0d40273f0c307028d448325a72ee1665b (plain)
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_send(int s, const void *msg, size_t len, int flags)
{
  int result;

  ENTER_CRITICAL;
  MAKE_READABLE(msg);
  result = send(s, msg, len, flags);
  EXIT_CRITICAL;
  return result;
}
OpenPOWER on IntegriCloud