shm implemented as memfd syscall
cheliequan
2022-12-04 14278bd98326f0afdd86fe4ec24e747b0e0b712a
1
2
3
4
5
6
all:
    gcc -g -c -Wall -Werror -fpic list_in_shm.c  memfd.c -lpthread
    gcc -shared -o liblistInShm.so list_in_shm.o memfd.o
    gcc test_list_in_shm.c liblistInShm.so -lpthread
clean:
    rm -rf *.so *.o a.out