SLIDE 1
CloudABI: safe, testable and maintainable software for UNIX
Speaker: Ed Schouten, ed@nuxi.nl
NLUUG, Bunnik 2015-05-28
CloudABI: safe, testable and maintainable software for UNIX - - PowerPoint PPT Presentation
NLUUG, Bunnik 2015-05-28 CloudABI: safe, testable and maintainable software for UNIX Speaker: Ed Schouten, ed@nuxi.nl Programme What is wrong with UNIX? What is CloudABI? Use cases for CloudABI Links 2 What is wrong with UNIX?
NLUUG, Bunnik 2015-05-28
2
3
4
5
6
7
8
9
10
#include <sys/socket.h> #include <unistd.h> int main() { int fd; while ((fd = accept(0, NULL, NULL)) >= 0) { const char buf[] = “HTTP/1.1 200 OK\r\n” “Content-Type: text/plain\r\n\r\n” “Hello, world\n”; write(fd, buf, sizeof(buf) - 1); close(fd); } } 11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30