1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
| #include <stdio.h>
|
| #include "src2/shmh.h"
| #include <sys/types.h>
| #include <sys/stat.h>
|
| #include <thread>
| #include <unistd.h>
| using namespace std;
|
| static int idx = 0;
| static int get_memfd(void* args, struct fd_msg* msg){
| int fd = basic_shm_create("shm", 128*1024*1024);
| if (fd > 0){
| // struct stat st;
| // if (fstat (fd, &st))
| // {
| // return -1;
| // }
| // printf("st size %ld\n", st.st_size);
|
| msg->fd = fd;
| unsigned char* addr;
| if (basic_shm_mmap(fd, &addr) > 0){
| sprintf((char*)addr, "get_memfd set msg %d", idx++);
| basic_shm_unmmap(fd, &addr);
| }
| return fd;
| }
| return 0;
| }
|
| int main(int argc, char const *argv[])
| {
| int sock = unix_domain_server_fd("/tmp/memfd_shm.sock", 1);
| if (sock < 0){
| printf("unix_domain_server_fd failed\n");
| return 0;
| }
|
| thread t([&sock]{
| // epoll_loop(sock, get_memfd, NULL, NULL);
| // poll_loop(sock, get_memfd, NULL, NULL);
| // select_loop(sock, get_memfd, NULL, NULL);
| simple_loop(sock, get_memfd, NULL, NULL);
| });
|
| t.join();
| close(sock);
|
| return 0;
| }
|
|