1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-15 21:41:04 +01:00

* Benchmarking Unix domain sockets.

This commit is contained in:
Eelco Dolstra 2006-11-30 15:06:46 +00:00
parent fe15f991e3
commit 5f0b9de6d8
3 changed files with 121 additions and 0 deletions

7
socket/Makefile Normal file
View file

@ -0,0 +1,7 @@
all: server client
server: server.c
gcc -Wall -o server server.c
client: client.c
gcc -Wall -o client client.c